Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

AddAttribute

Properties

Name Type Description Notes
key str Attribute Key
data_type AttributeDataType [optional] [default to AttributeDataType.STRING]
type AttributeType [optional] [default to AttributeType.STANDARD]
watermark Watermark [optional]

Example

from formkiq_client.models.add_attribute import AddAttribute

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

# convert the object into a dict
add_attribute_dict = add_attribute_instance.to_dict()
# create an instance of AddAttribute from a dict
add_attribute_from_dict = AddAttribute.from_dict(add_attribute_dict)

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