Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 992 Bytes

File metadata and controls

31 lines (22 loc) · 992 Bytes

SeoSerpCompetitor

Properties

Name Type Description Notes
domain str
best_rank int [optional]
result_count int

Example

from unifapi.models.seo_serp_competitor import SeoSerpCompetitor

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

# convert the object into a dict
seo_serp_competitor_dict = seo_serp_competitor_instance.to_dict()
# create an instance of SeoSerpCompetitor from a dict
seo_serp_competitor_from_dict = SeoSerpCompetitor.from_dict(seo_serp_competitor_dict)

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