Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.4 KB

File metadata and controls

34 lines (25 loc) · 1.4 KB

AddAttributeSchemaOptional

Properties

Name Type Description Notes
default_entity_type_id str [optional]
default_entity_id str [optional]
min_number_of_values float The minimum number of attribute values [optional]
max_number_of_values float The maximum number of attribute values [optional]
attribute_key str [optional]
allowed_values List[str] Only valid string values [optional]

Example

from formkiq_client.models.add_attribute_schema_optional import AddAttributeSchemaOptional

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

# convert the object into a dict
add_attribute_schema_optional_dict = add_attribute_schema_optional_instance.to_dict()
# create an instance of AddAttributeSchemaOptional from a dict
add_attribute_schema_optional_from_dict = AddAttributeSchemaOptional.from_dict(add_attribute_schema_optional_dict)

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