Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

UpdateAttribute

Properties

Name Type Description Notes
type AttributeType [optional] [default to AttributeType.STANDARD]
validation_regex str Attribute Value Regex Validation [optional]
watermark Watermark [optional]

Example

from formkiq_client.models.update_attribute import UpdateAttribute

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

# convert the object into a dict
update_attribute_dict = update_attribute_instance.to_dict()
# create an instance of UpdateAttribute from a dict
update_attribute_from_dict = UpdateAttribute.from_dict(update_attribute_dict)

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