Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1004 Bytes

File metadata and controls

33 lines (24 loc) · 1004 Bytes

GeoSerpLink

Properties

Name Type Description Notes
title str [optional]
url str [optional]
domain str [optional]
snippet str [optional]
is_target bool [optional]

Example

from unifapi.models.geo_serp_link import GeoSerpLink

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

# convert the object into a dict
geo_serp_link_dict = geo_serp_link_instance.to_dict()
# create an instance of GeoSerpLink from a dict
geo_serp_link_from_dict = GeoSerpLink.from_dict(geo_serp_link_dict)

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