Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

PermissionExpandResponse.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

PermissionExpandResponse

PermissionExpandResponse is the response message for the Expand method in the Permission service.

Properties

Name Type Description Notes
tree V1Expand [optional]

Example

from permify.models.permission_expand_response import PermissionExpandResponse

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

# convert the object into a dict
permission_expand_response_dict = permission_expand_response_instance.to_dict()
# create an instance of PermissionExpandResponse from a dict
permission_expand_response_from_dict = PermissionExpandResponse.from_dict(permission_expand_response_dict)

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