/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Status147Enum } from './Status147Enum'; /** * Read-only serializer for EximTask records. * * Tasks are created by the Course post_save signal and the admin sync * action; nothing should create or modify them through this API. */ export type EximTask = { readonly id: number; readonly course: number; readonly course_id: string; readonly target_environment: number; readonly target_environment_name: string; readonly status: Status147Enum; /** * Time the publish signal was received; used for FIFO ordering */ readonly published_at: string; readonly created_at: string; readonly updated_at: string; readonly started_at: string | null; readonly finished_at: string | null; /** * URL to download the exported course file */ readonly export_download_url: string; /** * Filename of uploaded archive used to track import on target environment */ readonly import_filename: string; readonly error_message: string; };