| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | ||
| context | ConversationContext | [optional] |
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)