import * as $dara from '@darabonba/typescript'; export declare class CreateCustomizedVoiceJobResponseBodyData extends $dara.Model { /** * @remarks * The ID of the human voice cloning job. * * @example * ****29faef8144638ba42eb8e037**** */ 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 CreateCustomizedVoiceJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: CreateCustomizedVoiceJobResponseBodyData; /** * @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; }); }