Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

TrafficBlueprintIndicator

Properties

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

Example

from instana_client.models.traffic_blueprint_indicator import TrafficBlueprintIndicator

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

# convert the object into a dict
traffic_blueprint_indicator_dict = traffic_blueprint_indicator_instance.to_dict()
# create an instance of TrafficBlueprintIndicator from a dict
traffic_blueprint_indicator_from_dict = TrafficBlueprintIndicator.from_dict(traffic_blueprint_indicator_dict)

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