Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

AddAccessAttribute.md

File metadata and controls

33 lines (24 loc) · 1.22 KB

AddAccessAttribute

Document Access Attribute (requires either: stringValue, numberValue, booleanValue)

Properties

Name Type Description Notes
key str Attribute key
string_value str Attribute with string value [optional]
number_value float Attribute with number value [optional]
boolean_value bool Attribute with boolean value [optional]

Example

from formkiq_client.models.add_access_attribute import AddAccessAttribute

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

# convert the object into a dict
add_access_attribute_dict = add_access_attribute_instance.to_dict()
# create an instance of AddAccessAttribute from a dict
add_access_attribute_form_dict = add_access_attribute.from_dict(add_access_attribute_dict)

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