ai-core-api-client/docs/DomainUpdatePromptResponse.md
NikitolProject f39e6865be
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
feat: regenerate client with usage info in conversation response
2026-03-26 12:44:22 +03:00

30 lines
1.0 KiB
Markdown

# DomainUpdatePromptResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **bool** | | [optional]
## Example
```python
from ai_core_api_client.models.domain_update_prompt_response import DomainUpdatePromptResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DomainUpdatePromptResponse from a JSON string
domain_update_prompt_response_instance = DomainUpdatePromptResponse.from_json(json)
# print the JSON string representation of the object
print(DomainUpdatePromptResponse.to_json())
# convert the object into a dict
domain_update_prompt_response_dict = domain_update_prompt_response_instance.to_dict()
# create an instance of DomainUpdatePromptResponse from a dict
domain_update_prompt_response_from_dict = DomainUpdatePromptResponse.from_dict(domain_update_prompt_response_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)