Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 951 Bytes

ChatHistoryItem.md

File metadata and controls

31 lines (22 loc) · 951 Bytes

ChatHistoryItem

Properties

Name Type Description Notes
type str
content str
timestamp datetime

Example

from iblai.models.chat_history_item import ChatHistoryItem

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

# convert the object into a dict
chat_history_item_dict = chat_history_item_instance.to_dict()
# create an instance of ChatHistoryItem from a dict
chat_history_item_from_dict = ChatHistoryItem.from_dict(chat_history_item_dict)

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