sindri
Version:
The Sindri Labs JavaScript SDK and CLI tool.
25 lines (22 loc) • 557 B
text/typescript
/* 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;
};