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
31 lines
1018 B
Markdown
31 lines
1018 B
Markdown
# DomainClientChat
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**client_id** | **int** | | [optional]
|
|
**messages** | [**List[DomainClientMessage]**](DomainClientMessage.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from ai_core_api_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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|