| Name | Type | Description | Notes |
|---|---|---|---|
| type | AttributeType | [optional] [default to AttributeType.STANDARD] | |
| key | str | Attribute Key | |
| data_type | AttributeDataType | [optional] [default to AttributeDataType.STRING] | |
| validation_regex | str | Attribute Value Regex Validation | [optional] |
| watermark | Watermark | [optional] |
from formkiq_client.models.attribute import Attribute
# TODO update the JSON string below
json = "{}"
# create an instance of Attribute from a JSON string
attribute_instance = Attribute.from_json(json)
# print the JSON string representation of the object
print(Attribute.to_json())
# convert the object into a dict
attribute_dict = attribute_instance.to_dict()
# create an instance of Attribute from a dict
attribute_from_dict = Attribute.from_dict(attribute_dict)