Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

PermissionCheckResponse.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

PermissionCheckResponse

PermissionCheckResponse is the response message for the Check method in the Permission service.

Properties

Name Type Description Notes
can CheckResult [optional]
metadata PermissionCheckResponseMetadata [optional]

Example

from permify.models.permission_check_response import PermissionCheckResponse

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

# convert the object into a dict
permission_check_response_dict = permission_check_response_instance.to_dict()
# create an instance of PermissionCheckResponse from a dict
permission_check_response_from_dict = PermissionCheckResponse.from_dict(permission_check_response_dict)

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