19 lines
606 B
TypeScript
19 lines
606 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* FastAPI
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { AnalysisStatus } from './analysisStatus';
|
|
import type { AnalysisStatusResponseChannelErrors } from './analysisStatusResponseChannelErrors';
|
|
import type { AnalysisStatusResponseCompletedAt } from './analysisStatusResponseCompletedAt';
|
|
|
|
export interface AnalysisStatusResponse {
|
|
analysis_run_id: string;
|
|
status: AnalysisStatus;
|
|
progress: number;
|
|
current_step: string;
|
|
channel_errors: AnalysisStatusResponseChannelErrors;
|
|
completed_at: AnalysisStatusResponseCompletedAt;
|
|
}
|