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