Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1014 Bytes

File metadata and controls

30 lines (21 loc) · 1014 Bytes

SendMessageRequest

Properties

Name Type Description Notes
content str
context ConversationContext [optional]

Example

from revengai.models.send_message_request import SendMessageRequest

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

# convert the object into a dict
send_message_request_dict = send_message_request_instance.to_dict()
# create an instance of SendMessageRequest from a dict
send_message_request_from_dict = SendMessageRequest.from_dict(send_message_request_dict)

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