Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.47 KB

File metadata and controls

32 lines (23 loc) · 1.47 KB

MappingClassificationConditionContent

Mapping Classification Condition

Properties

Name Type Description Notes
source_type MappingClassificationConditionSourceType
matching_type MappingClassificationConditionMatchingType
text str Text to match against the document content

Example

from formkiq_client.models.mapping_classification_condition_content import MappingClassificationConditionContent

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

# convert the object into a dict
mapping_classification_condition_content_dict = mapping_classification_condition_content_instance.to_dict()
# create an instance of MappingClassificationConditionContent from a dict
mapping_classification_condition_content_from_dict = MappingClassificationConditionContent.from_dict(mapping_classification_condition_content_dict)

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