Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 943 Bytes

ChatSessionRequest.md

File metadata and controls

29 lines (20 loc) · 943 Bytes

ChatSessionRequest

Properties

Name Type Description Notes
mentor str Name of mentor

Example

from iblai.models.chat_session_request import ChatSessionRequest

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

# convert the object into a dict
chat_session_request_dict = chat_session_request_instance.to_dict()
# create an instance of ChatSessionRequest from a dict
chat_session_request_from_dict = ChatSessionRequest.from_dict(chat_session_request_dict)

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