Name | Type | Description | Notes |
---|---|---|---|
attribute_key | str | Attribute Key | [optional] |
source_type | MappingAttributeSourceType | [optional] | |
default_value | str | Default value | [optional] |
default_values | List[str] | Default values | [optional] |
label_texts | List[str] | [optional] | |
label_matching_type | MappingAttributeLabelMatchingType | [optional] | |
metadata_field | MappingAttributeMetadataField | [optional] | |
validation_regex | str | Attribute Value Regex Validation | [optional] |
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)