Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

SeoKeywordOverviewResponse

Properties

Name Type Description Notes
keywords List[str] Keywords echoed from the request.
location str
language str
view SeoKeywordView
results List[SeoKeywordItem] Per-keyword metrics: search volume, CPC, competition, difficulty, and intent. Each keyword is one billable record.

Example

from unifapi.models.seo_keyword_overview_response import SeoKeywordOverviewResponse

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

# convert the object into a dict
seo_keyword_overview_response_dict = seo_keyword_overview_response_instance.to_dict()
# create an instance of SeoKeywordOverviewResponse from a dict
seo_keyword_overview_response_from_dict = SeoKeywordOverviewResponse.from_dict(seo_keyword_overview_response_dict)

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