Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.96 KB

File metadata and controls

44 lines (35 loc) · 1.96 KB

SeoSerpResponse

Properties

Name Type Description Notes
query str
location str
language str
device str
os SeoSerpOs [optional]
view SeoSerpView
rank_window SeoSerpRankWindow
observed_at str [optional]
search_url str [optional]
total_results int [optional]
serp_features List[str]
summary SeoSerpSummary
questions List[SeoSerpQuestion] People Also Ask questions useful for SEO content-gap analysis.
results List[SeoSerpResult] SERP elements returned in source order. Organic results are billable; ads, reviews, people-also-ask, knowledge graph, and other rich elements are returned as free context.
target SeoSerpTarget [optional]
competitors List[SeoSerpCompetitor] Organic result domains excluding the optional target domain. Omitted when results are truncated by balance. [optional]

Example

from unifapi.models.seo_serp_response import SeoSerpResponse

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

# convert the object into a dict
seo_serp_response_dict = seo_serp_response_instance.to_dict()
# create an instance of SeoSerpResponse from a dict
seo_serp_response_from_dict = SeoSerpResponse.from_dict(seo_serp_response_dict)

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