Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.85 KB

File metadata and controls

34 lines (25 loc) · 1.85 KB

CallGroupsResult

Properties

Name Type Description Notes
adjusted_timeframe AdjustedTimeframe [optional]
can_load_more bool Determine if additional data is available when a new query is made using the cursor from the last item in the `items` list. [optional]
items List[CallGroupsItem] 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

from instana_client.models.call_groups_result import CallGroupsResult

# TODO update the JSON string below
json = "{}"
# create an instance of CallGroupsResult from a JSON string
call_groups_result_instance = CallGroupsResult.from_json(json)
# print the JSON string representation of the object
print(CallGroupsResult.to_json())

# convert the object into a dict
call_groups_result_dict = call_groups_result_instance.to_dict()
# create an instance of CallGroupsResult from a dict
call_groups_result_from_dict = CallGroupsResult.from_dict(call_groups_result_dict)

[Back to Model list] [Back to API list] [Back to README]