Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

SchemaReadResponse.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

SchemaReadResponse

SchemaReadResponse is the response message for the Read method in the Schema service. It returns the requested schema.

Properties

Name Type Description Notes
var_schema SchemaDefinition [optional]

Example

from permify.models.schema_read_response import SchemaReadResponse

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

# convert the object into a dict
schema_read_response_dict = schema_read_response_instance.to_dict()
# create an instance of SchemaReadResponse from a dict
schema_read_response_from_dict = SchemaReadResponse.from_dict(schema_read_response_dict)

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