Skip to content

GrantGroupPermissionResponseBody

Confirmation response after granting a permission to a group

Example Usage

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

let value: GrantGroupPermissionResponseBody = {
  success: false,
  message: "<value>",
  group: "<value>",
  permission: "writer",
  resource: "<value>",
};

Fields

FieldTypeRequiredDescription
successboolean✔️True if the permission was granted successfully
messagestring✔️Human-readable message describing the result of the operation
groupstring✔️The group ID that was granted permission
permissionoperations.GrantGroupPermissionPermissionsGroupsPermission✔️Permission level for the resource. Options: "reader" (view only), "writer" (view and modify), "owner" (full control)
resourcestring✔️The resource ID the permission was granted on