Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

PermissionBulkCheckResponse

PermissionBulkCheckResponse is the response message for the BulkCheck method in the Permission service.

Properties

Name Type Description Notes
results List[PermissionCheckResponse] List of permission check responses corresponding to each request. [optional]

Example

from permify.models.permission_bulk_check_response import PermissionBulkCheckResponse

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

# convert the object into a dict
permission_bulk_check_response_dict = permission_bulk_check_response_instance.to_dict()
# create an instance of PermissionBulkCheckResponse from a dict
permission_bulk_check_response_form_dict = permission_bulk_check_response.from_dict(permission_bulk_check_response_dict)

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