| Name | Type | Description | Notes |
|---|---|---|---|
| var_schema | str | A URL to the JSON Schema for this object. | [optional] [readonly] |
| content | str | ||
| context | ConversationContext | [optional] |
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)