| Name | Type | Description | Notes |
|---|---|---|---|
| attribute_key | str | Attribute Key | |
| source_type | MappingAttributeSourceType | ||
| default_value | str | Default value | [optional] |
| default_values | List[str] | Default values | [optional] |
| label_texts | List[str] | Label Texts | |
| label_matching_type | MappingAttributeLabelMatchingType | ||
| validation_regex | str | Attribute Value Regex Validation | [optional] |
| metadata_field | MappingAttributeMetadataField | ||
| llm_prompt_entity_name | str | LLM prompt entity name |
from formkiq_client.models.mapping_attribute import MappingAttribute
# TODO update the JSON string below
json = "{}"
# create an instance of MappingAttribute from a JSON string
mapping_attribute_instance = MappingAttribute.from_json(json)
# print the JSON string representation of the object
print(MappingAttribute.to_json())
# convert the object into a dict
mapping_attribute_dict = mapping_attribute_instance.to_dict()
# create an instance of MappingAttribute from a dict
mapping_attribute_from_dict = MappingAttribute.from_dict(mapping_attribute_dict)