Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

PermissionCheckResponseMetadata.md

File metadata and controls

30 lines (21 loc) · 1.2 KB

PermissionCheckResponseMetadata

PermissionCheckResponseMetadata metadata for the PermissionCheckResponse.

Properties

Name Type Description Notes
check_count int The count of the checks performed. [optional]

Example

from permify.models.permission_check_response_metadata import PermissionCheckResponseMetadata

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

# convert the object into a dict
permission_check_response_metadata_dict = permission_check_response_metadata_instance.to_dict()
# create an instance of PermissionCheckResponseMetadata from a dict
permission_check_response_metadata_from_dict = PermissionCheckResponseMetadata.from_dict(permission_check_response_metadata_dict)

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