Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

MetricsLookBackPeriod.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

MetricsLookBackPeriod

Properties

Name Type Description Notes
value_from str value from for the look back.
value MetricsValueUnit The value of the look back.

Example

from onelens_backend_client.models.metrics_look_back_period import MetricsLookBackPeriod

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

# convert the object into a dict
metrics_look_back_period_dict = metrics_look_back_period_instance.to_dict()
# create an instance of MetricsLookBackPeriod from a dict
metrics_look_back_period_form_dict = metrics_look_back_period.from_dict(metrics_look_back_period_dict)

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