| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain, such as example.com or https://example.com. Specified without www. A page URL can also be passed to get only that page's rankings. | |
| location | SeoRankedKeywordsLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| limit | int | Maximum number of ranked keywords to return. Defaults to 100. | [optional] |
| offset | int | Number of keywords to skip from the start of the results. | [optional] |
| ignore_synonyms | bool | When true, exclude highly similar keyword variations from the results. | [optional] |
| view | SeoKeywordView | [optional] |
from unifapi.models.seo_ranked_keywords_request import SeoRankedKeywordsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoRankedKeywordsRequest from a JSON string
seo_ranked_keywords_request_instance = SeoRankedKeywordsRequest.from_json(json)
# print the JSON string representation of the object
print(SeoRankedKeywordsRequest.to_json())
# convert the object into a dict
seo_ranked_keywords_request_dict = seo_ranked_keywords_request_instance.to_dict()
# create an instance of SeoRankedKeywordsRequest from a dict
seo_ranked_keywords_request_from_dict = SeoRankedKeywordsRequest.from_dict(seo_ranked_keywords_request_dict)