Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

File metadata and controls

34 lines (25 loc) · 1.09 KB

LocationStatus

Properties

Name Type Description Notes
location_display_label str [optional]
location_id str
location_type str [optional]
success_rate float [optional]
success_runs int [optional]
total_test_runs int [optional]

Example

from instana_client.models.location_status import LocationStatus

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

# convert the object into a dict
location_status_dict = location_status_instance.to_dict()
# create an instance of LocationStatus from a dict
location_status_from_dict = LocationStatus.from_dict(location_status_dict)

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