| Name | Type | Description | Notes |
|---|---|---|---|
| result_type | DocumentAiPromptResultType | ||
| entity_type | str | Entity type when resultType is ENTITY | [optional] |
| entity_namespace | EntityTypeNamespace | [optional] | |
| attributes | List[DocumentAiPromptResultAttribute] | Attributes extracted from result content |
from formkiq_client.models.document_ai_prompt_value import DocumentAiPromptValue
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentAiPromptValue from a JSON string
document_ai_prompt_value_instance = DocumentAiPromptValue.from_json(json)
# print the JSON string representation of the object
print(DocumentAiPromptValue.to_json())
# convert the object into a dict
document_ai_prompt_value_dict = document_ai_prompt_value_instance.to_dict()
# create an instance of DocumentAiPromptValue from a dict
document_ai_prompt_value_from_dict = DocumentAiPromptValue.from_dict(document_ai_prompt_value_dict)