interface AiFileTranslationAttribute {
    detectedType: null | string;
    downloadName: null | string;
    error: null | {
        message: string;
        stage: string;
    };
    originalFileName: string;
    parserVersion: null | number;
    sourceLanguageId: null | string;
    stage: string;
    targetLanguageId: string;
}

Properties

detectedType: null | string
downloadName: null | string
error: null | {
    message: string;
    stage: string;
}
originalFileName: string
parserVersion: null | number
sourceLanguageId: null | string
stage: string
targetLanguageId: string