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
| Field | Type | Required | Description |
|---|---|---|---|
status | components.GetExportStatusResponseStatus | ✔️ | Current status of the export job |
startTime | Date | ➖ | When the export job started |
closeTime | Date | ➖ | When the export job completed (if finished) |
progress | components.GetExportStatusResponseProgress | ➖ | Progress information (available when running) |
result | components.Result | ➖ | Export result (only present when status is COMPLETED) |
error | string | ➖ | Error message (only present when status is FAILED) |