Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.5 KB

File metadata and controls

34 lines (25 loc) · 1.5 KB

SeoPageIntersectionResponse

Properties

Name Type Description Notes
pages List[str] Page URLs echoed from the request, in order.
location str
language str
view SeoKeywordView
total_count int Total number of intersecting keywords available in DataForSEO's database. [optional]
results List[SeoPageIntersectionItem] Keywords the requested pages rank for, with each page's ranking position. Each keyword is one billable record.

Example

from unifapi.models.seo_page_intersection_response import SeoPageIntersectionResponse

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

# convert the object into a dict
seo_page_intersection_response_dict = seo_page_intersection_response_instance.to_dict()
# create an instance of SeoPageIntersectionResponse from a dict
seo_page_intersection_response_from_dict = SeoPageIntersectionResponse.from_dict(seo_page_intersection_response_dict)

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