Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

GetActionBeaconsResult

Properties

Name Type Description Notes
beacons List[ActionBeacon] List of action beacons for the current page
has_more bool Indicates whether more beacons are available beyond the current page
next_cursor int Cursor for the next page (timestamp). Use this value in the next request to fetch more beacons. [optional]

Example

from instana_client.models.get_action_beacons_result import GetActionBeaconsResult

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

# convert the object into a dict
get_action_beacons_result_dict = get_action_beacons_result_instance.to_dict()
# create an instance of GetActionBeaconsResult from a dict
get_action_beacons_result_from_dict = GetActionBeaconsResult.from_dict(get_action_beacons_result_dict)

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