| Name | Type | Description | Notes |
|---|---|---|---|
| page_address | str | URL of the target's page. | |
| metrics | SeoRelevantPageItemMetrics | [optional] |
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)