Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

SeoSerpResultRef

Properties

Name Type Description Notes
rank int [optional]
type str
title str [optional]
domain str [optional]
url str [optional]

Example

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]