Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.85 KB

File metadata and controls

36 lines (27 loc) · 1.85 KB

SeoPageIntersectionRequest

Properties

Name Type Description Notes
pages List[str] Absolute page URLs to compare (1-20). A trailing /* wildcard matches a page and its sub-paths.
exclude_pages List[str] Page URLs to exclude (up to 10). Keywords where these rank are dropped. [optional]
location SeoPageIntersectionLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
intersection_mode str union (default) returns keywords any page ranks for; intersect returns only keywords all pages rank for in the same SERP. [optional]
limit int Maximum number of keywords to return. Defaults to 100. [optional]
offset int Number of keywords to skip from the start of the results. [optional]
view SeoKeywordView [optional]

Example

from unifapi.models.seo_page_intersection_request import SeoPageIntersectionRequest

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

# convert the object into a dict
seo_page_intersection_request_dict = seo_page_intersection_request_instance.to_dict()
# create an instance of SeoPageIntersectionRequest from a dict
seo_page_intersection_request_from_dict = SeoPageIntersectionRequest.from_dict(seo_page_intersection_request_dict)

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