Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.14 KB

AggregationByResourceAndMetricValue.md

File metadata and controls

28 lines (19 loc) · 1.14 KB

AggregationByResourceAndMetricValue

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.aggregation_by_resource_and_metric_value import AggregationByResourceAndMetricValue

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

# convert the object into a dict
aggregation_by_resource_and_metric_value_dict = aggregation_by_resource_and_metric_value_instance.to_dict()
# create an instance of AggregationByResourceAndMetricValue from a dict
aggregation_by_resource_and_metric_value_form_dict = aggregation_by_resource_and_metric_value.from_dict(aggregation_by_resource_and_metric_value_dict)

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