Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

ChatWithAIAgent200Response

Properties

Name Type Description Notes
session_id str [optional]
response ChatWithAIAgent200ResponseResponse [optional]

Example

from quantcdn.models.chat_with_ai_agent200_response import ChatWithAIAgent200Response

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

# convert the object into a dict
chat_with_ai_agent200_response_dict = chat_with_ai_agent200_response_instance.to_dict()
# create an instance of ChatWithAIAgent200Response from a dict
chat_with_ai_agent200_response_from_dict = ChatWithAIAgent200Response.from_dict(chat_with_ai_agent200_response_dict)

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