Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

ReactMessageRequest.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

ReactMessageRequest

Properties

Name Type Description Notes
phone str Phone number with country code [optional]
emoji str Emoji to react [optional]

Example

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]