Name | Type | Description | Notes |
---|---|---|---|
metadata | SchemaPartialWriteRequestMetadata | [optional] | |
partials | Dict[str, Partials] | [optional] |
from permify.models.partial_write_body import PartialWriteBody
# TODO update the JSON string below
json = "{}"
# create an instance of PartialWriteBody from a JSON string
partial_write_body_instance = PartialWriteBody.from_json(json)
# print the JSON string representation of the object
print(PartialWriteBody.to_json())
# convert the object into a dict
partial_write_body_dict = partial_write_body_instance.to_dict()
# create an instance of PartialWriteBody from a dict
partial_write_body_from_dict = PartialWriteBody.from_dict(partial_write_body_dict)