31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# DomainAIFunctionParameterProperty
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**description** | **str** | | [optional]
|
|
**type** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from openapi_client.models.domain_ai_function_parameter_property import DomainAIFunctionParameterProperty
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DomainAIFunctionParameterProperty from a JSON string
|
|
domain_ai_function_parameter_property_instance = DomainAIFunctionParameterProperty.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DomainAIFunctionParameterProperty.to_json())
|
|
|
|
# convert the object into a dict
|
|
domain_ai_function_parameter_property_dict = domain_ai_function_parameter_property_instance.to_dict()
|
|
# create an instance of DomainAIFunctionParameterProperty from a dict
|
|
domain_ai_function_parameter_property_from_dict = DomainAIFunctionParameterProperty.from_dict(domain_ai_function_parameter_property_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)
|
|
|
|
|