Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 963 Bytes

File metadata and controls

29 lines (20 loc) · 963 Bytes

StaticThresholdRule

Properties

Name Type Description Notes
value float [optional]

Example

from instana_client.models.static_threshold_rule import StaticThresholdRule

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

# convert the object into a dict
static_threshold_rule_dict = static_threshold_rule_instance.to_dict()
# create an instance of StaticThresholdRule from a dict
static_threshold_rule_from_dict = StaticThresholdRule.from_dict(static_threshold_rule_dict)

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