| Name |
Type |
Description |
Notes |
| empty |
bool |
|
[optional] |
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]