Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

AcceptedAnswer

Properties

Name Type Description Notes
answer str [optional]

Example

from wordlift_client.models.accepted_answer import AcceptedAnswer

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

# convert the object into a dict
accepted_answer_dict = accepted_answer_instance.to_dict()
# create an instance of AcceptedAnswer from a dict
accepted_answer_from_dict = AcceptedAnswer.from_dict(accepted_answer_dict)

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