Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 995 Bytes

File metadata and controls

30 lines (21 loc) · 995 Bytes

EditReactionOption

EditReactionOption contain the reaction type

Properties

Name Type Description Notes
content str [optional]

Example

from openapi_client.models.edit_reaction_option import EditReactionOption

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

# convert the object into a dict
edit_reaction_option_dict = edit_reaction_option_instance.to_dict()
# create an instance of EditReactionOption from a dict
edit_reaction_option_from_dict = EditReactionOption.from_dict(edit_reaction_option_dict)

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