Name |
Type |
Description |
Notes |
phone |
str |
Phone number with country code |
[optional] |
emoji |
str |
Emoji to react |
[optional] |
from openapi_client.models.react_message_request import ReactMessageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ReactMessageRequest from a JSON string
react_message_request_instance = ReactMessageRequest.from_json(json)
# print the JSON string representation of the object
print(ReactMessageRequest.to_json())
# convert the object into a dict
react_message_request_dict = react_message_request_instance.to_dict()
# create an instance of ReactMessageRequest from a dict
react_message_request_from_dict = ReactMessageRequest.from_dict(react_message_request_dict)
[Back to Model list] [Back to API list] [Back to README]