Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 971 Bytes

File metadata and controls

29 lines (20 loc) · 971 Bytes

WebsiteEventResult

Properties

Name Type Description Notes
website_id str ID of the website. [optional]

Example

from instana_client.models.website_event_result import WebsiteEventResult

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

# convert the object into a dict
website_event_result_dict = website_event_result_instance.to_dict()
# create an instance of WebsiteEventResult from a dict
website_event_result_from_dict = WebsiteEventResult.from_dict(website_event_result_dict)

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