sindri
Version:
The Sindri Labs JavaScript SDK and CLI tool.
25 lines (22 loc) • 547 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 proof status.
*/
export type ProofStatusResponse = {
/**
* A unique identifier generated for the proof. UUID4 format.
*/
proof_id: string;
/**
* The status of the proof job.
*/
status: JobStatus;
/**
* The job is finished processing and waiting/polling can be terminated.
*/
finished_processing: boolean;
};