Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

WebsiteApdexEntity

Properties

Name Type Description Notes
beacon_type str Website Beacon Type
entity_id str Website ID
threshold int Value of the Apdex Threshold [optional]

Example

from instana_client.models.website_apdex_entity import WebsiteApdexEntity

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

# convert the object into a dict
website_apdex_entity_dict = website_apdex_entity_instance.to_dict()
# create an instance of WebsiteApdexEntity from a dict
website_apdex_entity_from_dict = WebsiteApdexEntity.from_dict(website_apdex_entity_dict)

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