| Name |
Type |
Description |
Notes |
| domain |
str |
|
|
| best_rank |
int |
|
[optional] |
| citation_count |
int |
|
|
from unifapi.models.geo_serp_competitor import GeoSerpCompetitor
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpCompetitor from a JSON string
geo_serp_competitor_instance = GeoSerpCompetitor.from_json(json)
# print the JSON string representation of the object
print(GeoSerpCompetitor.to_json())
# convert the object into a dict
geo_serp_competitor_dict = geo_serp_competitor_instance.to_dict()
# create an instance of GeoSerpCompetitor from a dict
geo_serp_competitor_from_dict = GeoSerpCompetitor.from_dict(geo_serp_competitor_dict)
[Back to Model list] [Back to API list] [Back to README]