import * as $dara from '@darabonba/typescript'; export declare class SubmitCustomizedVoiceJobResponseBodyData extends $dara.Model { /** * @remarks * The unique identifier for the voice cloning job. * * @example * ****d718e2ff4f018ccf419a7b71**** */ jobId?: string; /** * @remarks * The unique identifier for the voice. * * @example * xiaozhuan */ voiceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitCustomizedVoiceJobResponseBody extends $dara.Model { /** * @remarks * The response data. */ data?: SubmitCustomizedVoiceJobResponseBodyData; /** * @remarks * The unique identifier for the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * - true: The request was successful. * * - false: The request failed. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }