# 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)