GrantGroupPermissionRequestBody
Request body for granting a permission to a group on a resource
Example Usage
typescript
import { GrantGroupPermissionRequestBody } from "@meetkai/mka1/models/operations";
let value: GrantGroupPermissionRequestBody = {
group: "<value>",
permission: "writer",
resource: "<value>",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
group | string | ✔️ | Unique identifier for a group. Must contain only alphanumeric characters, hyphens, and underscores. |
permission | operations.GrantGroupPermissionPermission | ✔️ | Permission level for the resource. Options: "reader" (view only), "writer" (view and modify), "owner" (full control) |
resource | string | ✔️ | Unique identifier for a resource. Must contain only alphanumeric characters, hyphens, and underscores. |