Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

GeoSerpReference

Properties

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

Example

from unifapi.models.geo_serp_reference import GeoSerpReference

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

# convert the object into a dict
geo_serp_reference_dict = geo_serp_reference_instance.to_dict()
# create an instance of GeoSerpReference from a dict
geo_serp_reference_from_dict = GeoSerpReference.from_dict(geo_serp_reference_dict)

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