Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

File metadata and controls

31 lines (22 loc) · 1 KB

StaticThreshold

This threshold defines a static value to be evaluated with a specific operator.

Properties

Name Type Description Notes
last_updated int [optional]
value float [optional]

Example

from instana_client.models.static_threshold import StaticThreshold

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

# convert the object into a dict
static_threshold_dict = static_threshold_instance.to_dict()
# create an instance of StaticThreshold from a dict
static_threshold_from_dict = StaticThreshold.from_dict(static_threshold_dict)

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