Skip to content

GetExportStatusResponse

Response containing the status and progress of the feedback export job.

Example Usage

typescript
import { GetExportStatusResponse } from "@meetkai/mka1/models/components";

let value: GetExportStatusResponse = {
  status: "TERMINATED",
};

Fields

FieldTypeRequiredDescription
statuscomponents.GetExportStatusResponseStatus✔️Current status of the export job
startTimeDateWhen the export job started
closeTimeDateWhen the export job completed (if finished)
progresscomponents.GetExportStatusResponseProgressProgress information (available when running)
resultcomponents.ResultExport result (only present when status is COMPLETED)
errorstringError message (only present when status is FAILED)