| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| context |
object |
|
[optional] |
| conversation_uuid |
str |
|
|
| created_at |
datetime |
|
|
| title |
str |
|
|
| updated_at |
datetime |
|
|
| user_id |
int |
|
|
from revengai.models.conversation import Conversation
# TODO update the JSON string below
json = "{}"
# create an instance of Conversation from a JSON string
conversation_instance = Conversation.from_json(json)
# print the JSON string representation of the object
print(Conversation.to_json())
# convert the object into a dict
conversation_dict = conversation_instance.to_dict()
# create an instance of Conversation from a dict
conversation_from_dict = Conversation.from_dict(conversation_dict)
[Back to Model list] [Back to API list] [Back to README]