Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

SeoSerpTarget

Properties

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

Example

from unifapi.models.seo_serp_target import SeoSerpTarget

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

# convert the object into a dict
seo_serp_target_dict = seo_serp_target_instance.to_dict()
# create an instance of SeoSerpTarget from a dict
seo_serp_target_from_dict = SeoSerpTarget.from_dict(seo_serp_target_dict)

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