| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| metric_name | str | ||
| measures | List[MetricsAggregationType] | ||
| filters | List[OnelensModelsServiceInterfacesTenantDataMetricsServiceFilterCriteriaInput] | ||
| time_filter | OnelensModelsServiceInterfacesTenantDataMetricsServiceTimeDimensionInput | ||
| timezone | str | [optional] [default to 'Asia/Kolkata'] |
from onelens_backend_client.models.metrics_query_input import MetricsQueryInput
# TODO update the JSON string below
json = "{}"
# create an instance of MetricsQueryInput from a JSON string
metrics_query_input_instance = MetricsQueryInput.from_json(json)
# print the JSON string representation of the object
print(MetricsQueryInput.to_json())
# convert the object into a dict
metrics_query_input_dict = metrics_query_input_instance.to_dict()
# create an instance of MetricsQueryInput from a dict
metrics_query_input_form_dict = metrics_query_input.from_dict(metrics_query_input_dict)