Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

PartialWriteBody.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

PartialWriteBody

Properties

Name Type Description Notes
metadata SchemaPartialWriteRequestMetadata [optional]
partials Dict[str, Partials] [optional]

Example

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)

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