Name |
Type |
Description |
Notes |
head |
str |
|
[optional] |
schemas |
List[SchemaList] |
|
[optional] |
continuous_token |
str |
continuous_token is a string that can be used to paginate and retrieve the next set of results. |
[optional] |
from permify.models.schema_list_response import SchemaListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SchemaListResponse from a JSON string
schema_list_response_instance = SchemaListResponse.from_json(json)
# print the JSON string representation of the object
print(SchemaListResponse.to_json())
# convert the object into a dict
schema_list_response_dict = schema_list_response_instance.to_dict()
# create an instance of SchemaListResponse from a dict
schema_list_response_from_dict = SchemaListResponse.from_dict(schema_list_response_dict)
[Back to Model list] [Back to API list] [Back to README]