ai-core-api-client/docs/DomainClientChat.md
2024-08-27 18:43:29 +03:00

1014 B

DomainClientChat

Properties

Name Type Description Notes
client_id int [optional]
messages List[DomainClientMessage] [optional]

Example

from openapi_client.models.domain_client_chat import DomainClientChat

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

# convert the object into a dict
domain_client_chat_dict = domain_client_chat_instance.to_dict()
# create an instance of DomainClientChat from a dict
domain_client_chat_from_dict = DomainClientChat.from_dict(domain_client_chat_dict)

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