| Name |
Type |
Description |
Notes |
| rank |
int |
|
[optional] |
| type |
str |
|
|
| title |
str |
|
[optional] |
| domain |
str |
|
[optional] |
| url |
str |
|
[optional] |
from unifapi.models.geo_serp_result_ref import GeoSerpResultRef
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpResultRef from a JSON string
geo_serp_result_ref_instance = GeoSerpResultRef.from_json(json)
# print the JSON string representation of the object
print(GeoSerpResultRef.to_json())
# convert the object into a dict
geo_serp_result_ref_dict = geo_serp_result_ref_instance.to_dict()
# create an instance of GeoSerpResultRef from a dict
geo_serp_result_ref_from_dict = GeoSerpResultRef.from_dict(geo_serp_result_ref_dict)
[Back to Model list] [Back to API list] [Back to README]