| Name |
Type |
Description |
Notes |
| domain |
str |
|
|
| best_rank |
int |
|
[optional] |
| result_count |
int |
|
|
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]