| Name | Type | Description | Notes |
|---|---|---|---|
| keywords | List[str] | Keywords echoed from the request. | |
| location | str | ||
| language | str | ||
| results | List[SeoKeywordDifficultyItem] | Keyword difficulty per keyword. Each keyword is one billable record. |
from unifapi.models.seo_keyword_difficulty_response import SeoKeywordDifficultyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordDifficultyResponse from a JSON string
seo_keyword_difficulty_response_instance = SeoKeywordDifficultyResponse.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordDifficultyResponse.to_json())
# convert the object into a dict
seo_keyword_difficulty_response_dict = seo_keyword_difficulty_response_instance.to_dict()
# create an instance of SeoKeywordDifficultyResponse from a dict
seo_keyword_difficulty_response_from_dict = SeoKeywordDifficultyResponse.from_dict(seo_keyword_difficulty_response_dict)