Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.5 KB

PermissionExpandBody.md

File metadata and controls

34 lines (25 loc) · 1.5 KB

PermissionExpandBody

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.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)

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