Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

SeoKeywordIntentRequest

Properties

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

Example

from unifapi.models.seo_keyword_intent_request import SeoKeywordIntentRequest

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

# convert the object into a dict
seo_keyword_intent_request_dict = seo_keyword_intent_request_instance.to_dict()
# create an instance of SeoKeywordIntentRequest from a dict
seo_keyword_intent_request_from_dict = SeoKeywordIntentRequest.from_dict(seo_keyword_intent_request_dict)

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