You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Represents an array of call group item containing several attributes that describe its properties. The item includes fields such as cursor, metrics, name, and timestamp, which provide detailed information about the item.
total_hits
int
The total number of items that match a given filter
[optional]
total_represented_item_count
int
For calls and EUM beacons, one row can represent multiple real items (batched call, sample multiplicity)
[optional]
total_retained_item_count
int
For calls and EUM beacons, only a subset is retained for historic data. Each retained row can represent multiple real items due to batching.
[optional]
Example
frominstana_client.models.mobile_app_beacon_groups_resultimportMobileAppBeaconGroupsResult# TODO update the JSON string belowjson="{}"# create an instance of MobileAppBeaconGroupsResult from a JSON stringmobile_app_beacon_groups_result_instance=MobileAppBeaconGroupsResult.from_json(json)
# print the JSON string representation of the objectprint(MobileAppBeaconGroupsResult.to_json())
# convert the object into a dictmobile_app_beacon_groups_result_dict=mobile_app_beacon_groups_result_instance.to_dict()
# create an instance of MobileAppBeaconGroupsResult from a dictmobile_app_beacon_groups_result_from_dict=MobileAppBeaconGroupsResult.from_dict(mobile_app_beacon_groups_result_dict)