Reaction contain one reaction
| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | [optional] | |
| created_at | datetime | [optional] | |
| user | User | [optional] |
from openapi_client.models.reaction import Reaction
# TODO update the JSON string below
json = "{}"
# create an instance of Reaction from a JSON string
reaction_instance = Reaction.from_json(json)
# print the JSON string representation of the object
print(Reaction.to_json())
# convert the object into a dict
reaction_dict = reaction_instance.to_dict()
# create an instance of Reaction from a dict
reaction_from_dict = Reaction.from_dict(reaction_dict)