| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain echoed from the request. | |
| location | str | ||
| language | str | ||
| view | SeoDomainMetricsView | ||
| total_count | int | Total number of ranking pages available for the target. | [optional] |
| results | List[SeoRelevantPageItem] | Pages of the target ranked by traffic, each with ranking metrics. Each page is one billable record. |
from unifapi.models.seo_relevant_pages_response import SeoRelevantPagesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoRelevantPagesResponse from a JSON string
seo_relevant_pages_response_instance = SeoRelevantPagesResponse.from_json(json)
# print the JSON string representation of the object
print(SeoRelevantPagesResponse.to_json())
# convert the object into a dict
seo_relevant_pages_response_dict = seo_relevant_pages_response_instance.to_dict()
# create an instance of SeoRelevantPagesResponse from a dict
seo_relevant_pages_response_from_dict = SeoRelevantPagesResponse.from_dict(seo_relevant_pages_response_dict)