Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.51 KB

File metadata and controls

34 lines (25 loc) · 1.51 KB

SeoRelevantPagesRequest

Properties

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]

Example

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)

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