/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { JobStatus } from "./JobStatus";

/**
 * Response for getting circuit status.
 */
export type CircuitStatusResponse = {
  /**
   * A unique identifier generated for the circuit. UUID4 format.
   */
  circuit_id: string;
  /**
   * The status of the circuit job.
   */
  status: JobStatus;
  /**
   * The job is finished processing and waiting/polling can be terminated.
   */
  finished_processing: boolean;
};
