Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

HistoricBaseline

Properties

Name Type Description Notes
baseline List[List[float]] [optional]
deviation_factor float [optional]
last_updated int [optional]
seasonality str

Example

from instana_client.models.historic_baseline import HistoricBaseline

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

# convert the object into a dict
historic_baseline_dict = historic_baseline_instance.to_dict()
# create an instance of HistoricBaseline from a dict
historic_baseline_from_dict = HistoricBaseline.from_dict(historic_baseline_dict)

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