Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 933 Bytes

File metadata and controls

32 lines (23 loc) · 933 Bytes

Reaction

Reaction contain one reaction

Properties

Name Type Description Notes
content str [optional]
created_at datetime [optional]
user User [optional]

Example

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)

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