Name | Type | Description | Notes |
---|---|---|---|
write | List[str] | [optional] | |
delete | List[str] | [optional] | |
update | List[str] | [optional] |
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)