Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.55 KB

PermissionsExpandRequest.md

File metadata and controls

34 lines (25 loc) · 1.55 KB

PermissionsExpandRequest

PermissionExpandRequest is the request message for the Expand method in the Permission service.

Properties

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]

Example

from permify.models.permissions_expand_request import PermissionsExpandRequest

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

# convert the object into a dict
permissions_expand_request_dict = permissions_expand_request_instance.to_dict()
# create an instance of PermissionsExpandRequest from a dict
permissions_expand_request_from_dict = PermissionsExpandRequest.from_dict(permissions_expand_request_dict)

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