Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

GetMutipleMetricsResponseMixin

Properties

Name Type Description Notes
query MetricsQueryOutput Query for the metric
metrics List[Metric]
unit str

Example

from onelens_backend_client.models.get_mutiple_metrics_response_mixin import GetMutipleMetricsResponseMixin

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

# convert the object into a dict
get_mutiple_metrics_response_mixin_dict = get_mutiple_metrics_response_mixin_instance.to_dict()
# create an instance of GetMutipleMetricsResponseMixin from a dict
get_mutiple_metrics_response_mixin_form_dict = get_mutiple_metrics_response_mixin.from_dict(get_mutiple_metrics_response_mixin_dict)

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