PermissionBulkCheckRequest is the request message for the BulkCheck method in the Permission service.
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | PermissionCheckRequestMetadata | [optional] | |
| items | List[PermissionBulkCheckRequestItem] | List of permission check requests, maximum 100 items. | [optional] |
| context | Context | [optional] | |
| arguments | List[Argument] | Additional arguments associated with this request. | [optional] |
from permify.models.bulk_check_body import BulkCheckBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkCheckBody from a JSON string
bulk_check_body_instance = BulkCheckBody.from_json(json)
# print the JSON string representation of the object
print BulkCheckBody.to_json()
# convert the object into a dict
bulk_check_body_dict = bulk_check_body_instance.to_dict()
# create an instance of BulkCheckBody from a dict
bulk_check_body_form_dict = bulk_check_body.from_dict(bulk_check_body_dict)