Some checks failed
ai_core_api_client Python package / build (3.10) (push) Failing after 1m16s
ai_core_api_client Python package / build (3.11) (push) Failing after 1m14s
ai_core_api_client Python package / build (3.12) (push) Failing after 5s
ai_core_api_client Python package / build (3.13) (push) Failing after 5s
ai_core_api_client Python package / build (3.9) (push) Failing after 5s
1.0 KiB
1.0 KiB
DomainGetChatsResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| chats | List[DomainClientChat] | [optional] |
Example
from ai_core_api_client.models.domain_get_chats_response import DomainGetChatsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DomainGetChatsResponse from a JSON string
domain_get_chats_response_instance = DomainGetChatsResponse.from_json(json)
# print the JSON string representation of the object
print(DomainGetChatsResponse.to_json())
# convert the object into a dict
domain_get_chats_response_dict = domain_get_chats_response_instance.to_dict()
# create an instance of DomainGetChatsResponse from a dict
domain_get_chats_response_from_dict = DomainGetChatsResponse.from_dict(domain_get_chats_response_dict)