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
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | ✔️ | True if the permission was granted successfully |
message | string | ✔️ | Human-readable message describing the result of the operation |
group | string | ✔️ | The group ID that was granted permission |
permission | operations.GrantGroupPermissionPermissionsGroupsPermission | ✔️ | Permission level for the resource. Options: "reader" (view only), "writer" (view and modify), "owner" (full control) |
resource | string | ✔️ | The resource ID the permission was granted on |