Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

SchemaWriteResponse.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

SchemaWriteResponse

SchemaWriteResponse is the response message for the Write method in the Schema service. It returns the version of the written schema.

Properties

Name Type Description Notes
schema_version str schema_version is the string that identifies the version of the written schema. [optional]

Example

from permify.models.schema_write_response import SchemaWriteResponse

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

# convert the object into a dict
schema_write_response_dict = schema_write_response_instance.to_dict()
# create an instance of SchemaWriteResponse from a dict
schema_write_response_from_dict = SchemaWriteResponse.from_dict(schema_write_response_dict)

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