Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

AddAttribute.md

File metadata and controls

31 lines (22 loc) · 1.06 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]

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]