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

NameTypeDescriptionNotes
contentstr
contextConversationContext[optional]

Example

fromrevengai.models.send_message_requestimportSendMessageRequest# TODO update the JSON string belowjson="{}"# create an instance of SendMessageRequest from a JSON stringsend_message_request_instance=SendMessageRequest.from_json(json)
# print the JSON string representation of the objectprint(SendMessageRequest.to_json())
# convert the object into a dictsend_message_request_dict=send_message_request_instance.to_dict()
# create an instance of SendMessageRequest from a dictsend_message_request_from_dict=SendMessageRequest.from_dict(send_message_request_dict)

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