PermissionExpandRequest is the request message for the Expand method in the Permission service.
Name | Type | Description | Notes |
---|---|---|---|
metadata | PermissionExpandRequestMetadata | [optional] | |
entity | Entity | [optional] | |
permission | str | Name of the permission to be expanded, not required, must start with a letter and can include alphanumeric and underscore, max 64 bytes. | [optional] |
context | Context | [optional] | |
arguments | List[Argument] | Additional arguments associated with this request. | [optional] |
from permify.models.permission_expand_body import PermissionExpandBody
# TODO update the JSON string below
json = "{}"
# create an instance of PermissionExpandBody from a JSON string
permission_expand_body_instance = PermissionExpandBody.from_json(json)
# print the JSON string representation of the object
print(PermissionExpandBody.to_json())
# convert the object into a dict
permission_expand_body_dict = permission_expand_body_instance.to_dict()
# create an instance of PermissionExpandBody from a dict
permission_expand_body_from_dict = PermissionExpandBody.from_dict(permission_expand_body_dict)