DeleteResponseResponseBody
Response object returned after successfully deleting a response.
Example Usage
typescript
import { DeleteResponseResponseBody } from "@meetkai/mka1/models/operations";
let value: DeleteResponseResponseBody = {
id: "<id>",
deleted: true,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | The unique identifier of the deleted response. |
object | string | ✔️ | The object type, always 'response' for response deletions. |
deleted | boolean | ✔️ | Confirmation flag indicating whether the response was successfully deleted. Always true on successful deletion. |