Name | Type | Description | Notes |
---|---|---|---|
version | str | [optional] | |
created_at | str | [optional] |
from permify.models.schema_list import SchemaList
# TODO update the JSON string below
json = "{}"
# create an instance of SchemaList from a JSON string
schema_list_instance = SchemaList.from_json(json)
# print the JSON string representation of the object
print(SchemaList.to_json())
# convert the object into a dict
schema_list_dict = schema_list_instance.to_dict()
# create an instance of SchemaList from a dict
schema_list_from_dict = SchemaList.from_dict(schema_list_dict)