Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

LatencyBlueprintIndicator

Properties

Name Type Description Notes
threshold float Threshold Value for the Blueprint [optional]

Example

from instana_client.models.latency_blueprint_indicator import LatencyBlueprintIndicator

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

# convert the object into a dict
latency_blueprint_indicator_dict = latency_blueprint_indicator_instance.to_dict()
# create an instance of LatencyBlueprintIndicator from a dict
latency_blueprint_indicator_from_dict = LatencyBlueprintIndicator.from_dict(latency_blueprint_indicator_dict)

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