import * as $dara from '@darabonba/typescript'; export declare class SubmitCustomizedVoiceJobResponseBodyData extends $dara.Model { /** * @remarks * The ID of the human voice cloning job. * * @example * ****d718e2ff4f018ccf419a7b71**** */ jobId?: string; /** * @remarks * The voice ID. * * @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 data returned. */ data?: SubmitCustomizedVoiceJobResponseBodyData; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ 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; }); }