Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1 KB

File metadata and controls

32 lines (23 loc) · 1 KB

SyntheticGeoPoint

Properties

Name Type Description Notes
city_name str
country_name str
latitude float
longitude float

Example

from instana_client.models.synthetic_geo_point import SyntheticGeoPoint

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

# convert the object into a dict
synthetic_geo_point_dict = synthetic_geo_point_instance.to_dict()
# create an instance of SyntheticGeoPoint from a dict
synthetic_geo_point_from_dict = SyntheticGeoPoint.from_dict(synthetic_geo_point_dict)

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