Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 957 Bytes

File metadata and controls

31 lines (22 loc) · 957 Bytes

SeoSerpQuestion

Properties

Name Type Description Notes
question str
rank int [optional]
source str

Example

from unifapi.models.seo_serp_question import SeoSerpQuestion

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

# convert the object into a dict
seo_serp_question_dict = seo_serp_question_instance.to_dict()
# create an instance of SeoSerpQuestion from a dict
seo_serp_question_from_dict = SeoSerpQuestion.from_dict(seo_serp_question_dict)

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