How measurements should be treated as a time series.
Name | Type | Description | Notes |
---|
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)