Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

SeoKeywordDifficultyRequest

Properties

Name Type Description Notes
keywords List[str] Keywords to score (1-1000). Returns the keyword difficulty for each.
location SeoKeywordDifficultyLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]

Example

from unifapi.models.seo_keyword_difficulty_request import SeoKeywordDifficultyRequest

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

# convert the object into a dict
seo_keyword_difficulty_request_dict = seo_keyword_difficulty_request_instance.to_dict()
# create an instance of SeoKeywordDifficultyRequest from a dict
seo_keyword_difficulty_request_from_dict = SeoKeywordDifficultyRequest.from_dict(seo_keyword_difficulty_request_dict)

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