Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 893 Bytes

Partials.md

File metadata and controls

31 lines (22 loc) · 893 Bytes

Partials

Properties

Name Type Description Notes
write List[str] [optional]
delete List[str] [optional]
update List[str] [optional]

Example

from permify.models.partials import Partials

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

# convert the object into a dict
partials_dict = partials_instance.to_dict()
# create an instance of Partials from a dict
partials_from_dict = Partials.from_dict(partials_dict)

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