| Name | Type | Description | Notes |
|---|---|---|---|
| answer | str | [optional] |
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)