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