Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

UserChatMemoryStatusView.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

UserChatMemoryStatusView

Properties

Name Type Description Notes
id int [readonly]
username str
platform_key str
enabled bool [optional]

Example

from iblai.models.user_chat_memory_status_view import UserChatMemoryStatusView

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

# convert the object into a dict
user_chat_memory_status_view_dict = user_chat_memory_status_view_instance.to_dict()
# create an instance of UserChatMemoryStatusView from a dict
user_chat_memory_status_view_from_dict = UserChatMemoryStatusView.from_dict(user_chat_memory_status_view_dict)

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