Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

SeoKeywordIntentResponse

Properties

Name Type Description Notes
keywords List[str] Keywords echoed from the request.
language str
results List[SeoKeywordIntentItem] Search intent per keyword. Each keyword is one billable record.

Example

from unifapi.models.seo_keyword_intent_response import SeoKeywordIntentResponse

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

# convert the object into a dict
seo_keyword_intent_response_dict = seo_keyword_intent_response_instance.to_dict()
# create an instance of SeoKeywordIntentResponse from a dict
seo_keyword_intent_response_from_dict = SeoKeywordIntentResponse.from_dict(seo_keyword_intent_response_dict)

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