Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

SeoRelevantPageItem

Properties

Name Type Description Notes
page_address str URL of the target's page.
metrics SeoRelevantPageItemMetrics [optional]

Example

from unifapi.models.seo_relevant_page_item import SeoRelevantPageItem

# TODO update the JSON string below
json = "{}"
# create an instance of SeoRelevantPageItem from a JSON string
seo_relevant_page_item_instance = SeoRelevantPageItem.from_json(json)
# print the JSON string representation of the object
print(SeoRelevantPageItem.to_json())

# convert the object into a dict
seo_relevant_page_item_dict = seo_relevant_page_item_instance.to_dict()
# create an instance of SeoRelevantPageItem from a dict
seo_relevant_page_item_from_dict = SeoRelevantPageItem.from_dict(seo_relevant_page_item_dict)

[Back to Model list] [Back to API list] [Back to README]