AddGroupMemberResponseBody
Confirmation response after adding a user to a group
Example Usage
typescript
import { AddGroupMemberResponseBody } from "@meetkai/mka1/models/operations";
let value: AddGroupMemberResponseBody = {
success: true,
message: "<value>",
group: "<value>",
user: "Breana5",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | ✔️ | True if the user was added to the group successfully |
message | string | ✔️ | Human-readable message describing the result of the operation |
group | string | ✔️ | The group ID the user was added to |
user | string | ✔️ | The user ID that was added to the group |