Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

GetWebsiteBeacons

Properties

Name Type Description Notes
pagination CursorPagination [optional]
tag_filters List[DeprecatedTagFilter] [optional]
time_frame TimeFrame [optional]
type str

Example

from instana_client.models.get_website_beacons import GetWebsiteBeacons

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

# convert the object into a dict
get_website_beacons_dict = get_website_beacons_instance.to_dict()
# create an instance of GetWebsiteBeacons from a dict
get_website_beacons_from_dict = GetWebsiteBeacons.from_dict(get_website_beacons_dict)

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