Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

MappingAttributeDataClassification

Mapping Attribute from document data classification results

Properties

Name Type Description Notes
attribute_key str Attribute Key
source_type MappingAttributeSourceType

Example

from formkiq_client.models.mapping_attribute_data_classification import MappingAttributeDataClassification

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

# convert the object into a dict
mapping_attribute_data_classification_dict = mapping_attribute_data_classification_instance.to_dict()
# create an instance of MappingAttributeDataClassification from a dict
mapping_attribute_data_classification_from_dict = MappingAttributeDataClassification.from_dict(mapping_attribute_data_classification_dict)

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