| Name | Type | Description | Notes |
|---|---|---|---|
| session_id | str | [optional] | |
| response | ChatWithAIAgent200ResponseResponse | [optional] |
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)