Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

GetLink200ResponseGeolinksInner.md

File metadata and controls

31 lines (22 loc) · 1.27 KB

GetLink200ResponseGeolinksInner

Properties

Name Type Description Notes
type str Type of the geographic link [optional]
value str Value corresponding to the type of the geographic link [optional]
url str URL of the geographic link [optional]

Example

from urlr.models.get_link200_response_geolinks_inner import GetLink200ResponseGeolinksInner

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

# convert the object into a dict
get_link200_response_geolinks_inner_dict = get_link200_response_geolinks_inner_instance.to_dict()
# create an instance of GetLink200ResponseGeolinksInner from a dict
get_link200_response_geolinks_inner_from_dict = GetLink200ResponseGeolinksInner.from_dict(get_link200_response_geolinks_inner_dict)

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