Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

SchemaReadBody.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

SchemaReadBody

SchemaReadRequest is the request message for the Read method in the Schema service. It contains tenant_id and metadata about the schema to be read.

Properties

Name Type Description Notes
metadata SchemaReadRequestMetadata [optional]

Example

from permify.models.schema_read_body import SchemaReadBody

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

# convert the object into a dict
schema_read_body_dict = schema_read_body_instance.to_dict()
# create an instance of SchemaReadBody from a dict
schema_read_body_from_dict = SchemaReadBody.from_dict(schema_read_body_dict)

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