| 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[WebsiteBeaconsItem] |
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] |
from instana_client.models.website_beacon_result import WebsiteBeaconResult
# TODO update the JSON string below
json = "{}"
# create an instance of WebsiteBeaconResult from a JSON string
website_beacon_result_instance = WebsiteBeaconResult.from_json(json)
# print the JSON string representation of the object
print(WebsiteBeaconResult.to_json())
# convert the object into a dict
website_beacon_result_dict = website_beacon_result_instance.to_dict()
# create an instance of WebsiteBeaconResult from a dict
website_beacon_result_from_dict = WebsiteBeaconResult.from_dict(website_beacon_result_dict)
[Back to Model list] [Back to API list] [Back to README]