Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

PatchedExtraRoleObjectPermissionRequest

User permission with additional object-related data

Properties

Name Type Description Notes
object_pk str [optional]

Example

from authentik_client.models.patched_extra_role_object_permission_request import PatchedExtraRoleObjectPermissionRequest

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

# convert the object into a dict
patched_extra_role_object_permission_request_dict = patched_extra_role_object_permission_request_instance.to_dict()
# create an instance of PatchedExtraRoleObjectPermissionRequest from a dict
patched_extra_role_object_permission_request_from_dict = PatchedExtraRoleObjectPermissionRequest.from_dict(patched_extra_role_object_permission_request_dict)

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