| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain, such as example.com or https://example.com. Specified without www. | |
| location | SeoRelevantPagesLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| limit | int | Maximum number of pages to return. Defaults to 100. | [optional] |
| offset | int | Number of pages to skip from the start of the results. | [optional] |
| view | SeoDomainMetricsView | [optional] |
from unifapi.models.seo_relevant_pages_request import SeoRelevantPagesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoRelevantPagesRequest from a JSON string
seo_relevant_pages_request_instance = SeoRelevantPagesRequest.from_json(json)
# print the JSON string representation of the object
print(SeoRelevantPagesRequest.to_json())
# convert the object into a dict
seo_relevant_pages_request_dict = seo_relevant_pages_request_instance.to_dict()
# create an instance of SeoRelevantPagesRequest from a dict
seo_relevant_pages_request_from_dict = SeoRelevantPagesRequest.from_dict(seo_relevant_pages_request_dict)