Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 962 Bytes

File metadata and controls

29 lines (20 loc) · 962 Bytes

WebsiteMetricResult

Properties

Name Type Description Notes
empty bool [optional]

Example

from instana_client.models.website_metric_result import WebsiteMetricResult

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

# convert the object into a dict
website_metric_result_dict = website_metric_result_instance.to_dict()
# create an instance of WebsiteMetricResult from a dict
website_metric_result_from_dict = WebsiteMetricResult.from_dict(website_metric_result_dict)

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