| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain or page echoed from the request. | |
| location | str | ||
| language | str | ||
| view | SeoKeywordView | ||
| total_count | int | Total number of keywords the target ranks for in DataForSEO's database. | [optional] |
| results | List[SeoRankedKeywordItem] | Keywords the target ranks for, each with keyword metrics and the ranking position/URL. Each keyword is one billable record. |
from unifapi.models.seo_ranked_keywords_response import SeoRankedKeywordsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoRankedKeywordsResponse from a JSON string
seo_ranked_keywords_response_instance = SeoRankedKeywordsResponse.from_json(json)
# print the JSON string representation of the object
print(SeoRankedKeywordsResponse.to_json())
# convert the object into a dict
seo_ranked_keywords_response_dict = seo_ranked_keywords_response_instance.to_dict()
# create an instance of SeoRankedKeywordsResponse from a dict
seo_ranked_keywords_response_from_dict = SeoRankedKeywordsResponse.from_dict(seo_ranked_keywords_response_dict)