Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 994 Bytes

File metadata and controls

29 lines (20 loc) · 994 Bytes

MobileAppMetricResult

Properties

Name Type Description Notes
empty bool [optional]

Example

from instana_client.models.mobile_app_metric_result import MobileAppMetricResult

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

# convert the object into a dict
mobile_app_metric_result_dict = mobile_app_metric_result_instance.to_dict()
# create an instance of MobileAppMetricResult from a dict
mobile_app_metric_result_from_dict = MobileAppMetricResult.from_dict(mobile_app_metric_result_dict)

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