Role-bound object level permission
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [readonly] | |
| codename | str | [readonly] | |
| model | str | [readonly] | |
| app_label | str | [readonly] | |
| object_pk | str | ||
| name | str | [readonly] |
from authentik_client.models.role_object_permission import RoleObjectPermission
# TODO update the JSON string below
json = "{}"
# create an instance of RoleObjectPermission from a JSON string
role_object_permission_instance = RoleObjectPermission.from_json(json)
# print the JSON string representation of the object
print(RoleObjectPermission.to_json())
# convert the object into a dict
role_object_permission_dict = role_object_permission_instance.to_dict()
# create an instance of RoleObjectPermission from a dict
role_object_permission_from_dict = RoleObjectPermission.from_dict(role_object_permission_dict)