Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

File metadata and controls

34 lines (25 loc) · 1.09 KB

GeoSerpTarget

Properties

Name Type Description Notes
value str
domain str [optional]
present bool
best_rank int [optional]
matches List[GeoSerpResultRef]
citations List[GeoSerpCitation]

Example

from unifapi.models.geo_serp_target import GeoSerpTarget

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

# convert the object into a dict
geo_serp_target_dict = geo_serp_target_instance.to_dict()
# create an instance of GeoSerpTarget from a dict
geo_serp_target_from_dict = GeoSerpTarget.from_dict(geo_serp_target_dict)

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