Skip to content

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

FieldTypeRequiredDescription
idstring✔️The unique identifier of the deleted response.
objectstring✔️The object type, always 'response' for response deletions.
deletedboolean✔️Confirmation flag indicating whether the response was successfully deleted. Always true on successful deletion.