Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

ResourceMetricMetricType.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

ResourceMetricMetricType

How measurements should be treated as a time series.

Properties

Name Type Description Notes

Example

from waylay.services.resources.models.resource_metric_metric_type import ResourceMetricMetricType

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

# convert the object into a dict
resource_metric_metric_type_dict = resource_metric_metric_type_instance.to_dict()
# create an instance of ResourceMetricMetricType from a dict
resource_metric_metric_type_form_dict = resource_metric_metric_type.from_dict(resource_metric_metric_type_dict)

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