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