Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.58 KB

File metadata and controls

36 lines (27 loc) · 1.58 KB

MappingAttributeMetadata

Mapping Attribute from document metadata

Properties

Name Type Description Notes
attribute_key str Attribute Key
source_type MappingAttributeSourceType
default_value str Default value used when no matching value is found [optional]
default_values List[str] Default values used when no matching value is found [optional]
label_texts List[str] Label Texts
label_matching_type MappingAttributeLabelMatchingType
metadata_field MappingAttributeMetadataField

Example

from formkiq_client.models.mapping_attribute_metadata import MappingAttributeMetadata

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

# convert the object into a dict
mapping_attribute_metadata_dict = mapping_attribute_metadata_instance.to_dict()
# create an instance of MappingAttributeMetadata from a dict
mapping_attribute_metadata_from_dict = MappingAttributeMetadata.from_dict(mapping_attribute_metadata_dict)

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