Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.63 KB

File metadata and controls

43 lines (34 loc) · 1.63 KB

SyntheticLocation

Properties

Name Type Description Notes
configuration SyntheticLocationConfiguration [optional]
created_at int [optional]
custom_properties Dict[str, str] [optional]
description str [optional]
display_label str [optional]
geo_point SyntheticGeoPoint
id str [optional]
label str
location_type str
modified_at int [optional]
observed_at int [optional]
playback_capabilities SyntheticPlaybackCapabilities
pop_version str [optional]
status str [optional]
total_tests int [optional]

Example

from instana_client.models.synthetic_location import SyntheticLocation

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

# convert the object into a dict
synthetic_location_dict = synthetic_location_instance.to_dict()
# create an instance of SyntheticLocation from a dict
synthetic_location_from_dict = SyntheticLocation.from_dict(synthetic_location_dict)

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