15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* FastAPI
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { FileType } from './fileType';
|
|
|
|
export interface BodyUploadAnalysisRunFileApiAnalysisRunIdFilesPost {
|
|
/** 업로드할 파일 */
|
|
file: string;
|
|
/** 파일 타입 (image/video/audio/document/file) */
|
|
file_type?: FileType;
|
|
}
|