Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

SchemaPartialWriteResponse.md

File metadata and controls

30 lines (21 loc) · 1.25 KB

SchemaPartialWriteResponse

SchemaPartialWriteResponse is the response message for the Parietal Write method in the Schema service. It returns the requested 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_partial_write_response import SchemaPartialWriteResponse

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

# convert the object into a dict
schema_partial_write_response_dict = schema_partial_write_response_instance.to_dict()
# create an instance of SchemaPartialWriteResponse from a dict
schema_partial_write_response_from_dict = SchemaPartialWriteResponse.from_dict(schema_partial_write_response_dict)

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