Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.07 KB

AggregationByResourceAndMetric.md

File metadata and controls

28 lines (19 loc) · 1.07 KB

AggregationByResourceAndMetric

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.aggregation_by_resource_and_metric import AggregationByResourceAndMetric

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

# convert the object into a dict
aggregation_by_resource_and_metric_dict = aggregation_by_resource_and_metric_instance.to_dict()
# create an instance of AggregationByResourceAndMetric from a dict
aggregation_by_resource_and_metric_form_dict = aggregation_by_resource_and_metric.from_dict(aggregation_by_resource_and_metric_dict)

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