| Name |
Type |
Description |
Notes |
| deviation_factor |
float |
|
[optional] |
from instana_client.models.adaptive_baseline import AdaptiveBaseline
# TODO update the JSON string below
json = "{}"
# create an instance of AdaptiveBaseline from a JSON string
adaptive_baseline_instance = AdaptiveBaseline.from_json(json)
# print the JSON string representation of the object
print(AdaptiveBaseline.to_json())
# convert the object into a dict
adaptive_baseline_dict = adaptive_baseline_instance.to_dict()
# create an instance of AdaptiveBaseline from a dict
adaptive_baseline_from_dict = AdaptiveBaseline.from_dict(adaptive_baseline_dict)
[Back to Model list] [Back to API list] [Back to README]