Name | Type | Description | Notes |
---|---|---|---|
topics | List[TopicModel] | ||
date_ranges | List[DateRange] | [optional] | |
sentiment | List[str] | [optional] |
from iblai.models.chat_history_filter_data import ChatHistoryFilterData
# TODO update the JSON string below
json = "{}"
# create an instance of ChatHistoryFilterData from a JSON string
chat_history_filter_data_instance = ChatHistoryFilterData.from_json(json)
# print the JSON string representation of the object
print(ChatHistoryFilterData.to_json())
# convert the object into a dict
chat_history_filter_data_dict = chat_history_filter_data_instance.to_dict()
# create an instance of ChatHistoryFilterData from a dict
chat_history_filter_data_from_dict = ChatHistoryFilterData.from_dict(chat_history_filter_data_dict)