Some checks failed
openapi_client Python package / build (3.11) (push) Failing after 46s
openapi_client Python package / build (3.10) (push) Failing after 48s
openapi_client Python package / build (3.7) (push) Failing after 5s
openapi_client Python package / build (3.8) (push) Failing after 5s
openapi_client Python package / build (3.9) (push) Failing after 5s
32 lines
1016 B
Markdown
32 lines
1016 B
Markdown
# DomainPromptBlock
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**content** | **str** | | [optional]
|
|
**description** | **str** | | [optional]
|
|
**name** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from openapi_client.models.domain_prompt_block import DomainPromptBlock
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DomainPromptBlock from a JSON string
|
|
domain_prompt_block_instance = DomainPromptBlock.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DomainPromptBlock.to_json())
|
|
|
|
# convert the object into a dict
|
|
domain_prompt_block_dict = domain_prompt_block_instance.to_dict()
|
|
# create an instance of DomainPromptBlock from a dict
|
|
domain_prompt_block_from_dict = DomainPromptBlock.from_dict(domain_prompt_block_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)
|
|
|
|
|