Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.43 KB

File metadata and controls

32 lines (23 loc) · 1.43 KB

MappingAttributeMetadataExtractionResult

Mapping Attribute from document metadata extraction results

Properties

Name Type Description Notes
attribute_key str Attribute Key
source_type MappingAttributeSourceType
llm_prompt_entity_name str LLM prompt entity name

Example

from formkiq_client.models.mapping_attribute_metadata_extraction_result import MappingAttributeMetadataExtractionResult

# TODO update the JSON string below
json = "{}"
# create an instance of MappingAttributeMetadataExtractionResult from a JSON string
mapping_attribute_metadata_extraction_result_instance = MappingAttributeMetadataExtractionResult.from_json(json)
# print the JSON string representation of the object
print(MappingAttributeMetadataExtractionResult.to_json())

# convert the object into a dict
mapping_attribute_metadata_extraction_result_dict = mapping_attribute_metadata_extraction_result_instance.to_dict()
# create an instance of MappingAttributeMetadataExtractionResult from a dict
mapping_attribute_metadata_extraction_result_from_dict = MappingAttributeMetadataExtractionResult.from_dict(mapping_attribute_metadata_extraction_result_dict)

[Back to Model list] [Back to API list] [Back to README]