Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

SchemaAttributes

Properties

Name Type Description Notes
composite_keys List[AttributeSchemaCompositeKey] List of Composite Keys [optional]
required List[AttributeSchemaRequired] List of Required Attributes [optional]
optional List[AttributeSchemaOptional] List of Optional Attribute [optional]
allow_additional_attributes bool [optional] [default to True]

Example

from formkiq_client.models.schema_attributes import SchemaAttributes

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

# convert the object into a dict
schema_attributes_dict = schema_attributes_instance.to_dict()
# create an instance of SchemaAttributes from a dict
schema_attributes_from_dict = SchemaAttributes.from_dict(schema_attributes_dict)

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