| Name |
Type |
Description |
Notes |
| website_id |
str |
ID of the website. |
[optional] |
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]