Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

SchemaListBody.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

SchemaListBody

SchemaListRequest is the request message for the List method in the Schema service. It contains tenant_id for which the schemas are to be listed.

Properties

Name Type Description Notes
page_size int page_size is the number of schemas to be returned in the response. The value should be between 1 and 100. [optional]
continuous_token str continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. [optional]

Example

from permify.models.schema_list_body import SchemaListBody

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

# convert the object into a dict
schema_list_body_dict = schema_list_body_instance.to_dict()
# create an instance of SchemaListBody from a dict
schema_list_body_from_dict = SchemaListBody.from_dict(schema_list_body_dict)

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