Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

AttributeSchemaCompositeKey.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

AttributeSchemaCompositeKey

Properties

Name Type Description Notes
attribute_keys List[str] [optional]

Example

from formkiq_client.models.attribute_schema_composite_key import AttributeSchemaCompositeKey

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

# convert the object into a dict
attribute_schema_composite_key_dict = attribute_schema_composite_key_instance.to_dict()
# create an instance of AttributeSchemaCompositeKey from a dict
attribute_schema_composite_key_from_dict = AttributeSchemaCompositeKey.from_dict(attribute_schema_composite_key_dict)

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