import * as $dara from '@darabonba/typescript'; export declare class SubmitVideoTranslationJobResponseBodyData extends $dara.Model { /** * @remarks * The ID of the video translation job. * * @example * ****d718e2ff4f018ccf419a7b71**** */ jobId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitVideoTranslationJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: SubmitVideoTranslationJobResponseBodyData; /** * @remarks * The request ID. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * Valid values: * * * true * * false * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }