Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

SchemaListResponse.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

SchemaListResponse

Properties

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]

Example

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]