Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

BulkCheckBody

PermissionBulkCheckRequest is the request message for the BulkCheck method in the Permission service.

Properties

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]

Example

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)

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