Skip to content

CheckGroupPermissionResponseBody

Response indicating whether a group has a specific permission

Example Usage

typescript
import { CheckGroupPermissionResponseBody } from "@meetkai/mka1/models/operations";

let value: CheckGroupPermissionResponseBody = {
  allowed: false,
  group: "<value>",
  permission: "reader",
  resource: "<value>",
};

Fields

FieldTypeRequiredDescription
allowedboolean✔️True if the group has the requested permission, false otherwise
groupstring✔️The group ID that was checked
permissionoperations.CheckGroupPermissionPermission✔️Permission level for the resource. Options: "reader" (view only), "writer" (view and modify), "owner" (full control)
resourcestring✔️The resource ID that was checked