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_form_dict = partial_write_body.from_dict(partial_write_body_dict)