Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

ConversationWithEvents

Properties

Name Type Description Notes
context object [optional]
conversation_uuid str
created_at datetime
events List[Event]
title str
updated_at datetime
user_id int

Example

from revengai.models.conversation_with_events import ConversationWithEvents

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

# convert the object into a dict
conversation_with_events_dict = conversation_with_events_instance.to_dict()
# create an instance of ConversationWithEvents from a dict
conversation_with_events_from_dict = ConversationWithEvents.from_dict(conversation_with_events_dict)

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