| Name | Type | Description | Notes |
|---|---|---|---|
| metrics | List[MobileAppMonitoringMetricsConfiguration] | ||
| tag_filters | List[DeprecatedTagFilter] | [optional] | |
| time_frame | TimeFrame | [optional] | |
| type | str |
from instana_client.models.get_mobile_app_metrics import GetMobileAppMetrics
# TODO update the JSON string below
json = "{}"
# create an instance of GetMobileAppMetrics from a JSON string
get_mobile_app_metrics_instance = GetMobileAppMetrics.from_json(json)
# print the JSON string representation of the object
print(GetMobileAppMetrics.to_json())
# convert the object into a dict
get_mobile_app_metrics_dict = get_mobile_app_metrics_instance.to_dict()
# create an instance of GetMobileAppMetrics from a dict
get_mobile_app_metrics_from_dict = GetMobileAppMetrics.from_dict(get_mobile_app_metrics_dict)