// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { jobId: 'JobId', voiceId: 'VoiceId', }; } static types(): { [key: string]: any } { return { jobId: 'string', voiceId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export 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 } { return { data: 'Data', requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { data: CreateCustomizedVoiceJobResponseBodyData, requestId: 'string', success: 'boolean', }; } validate() { if(this.data && typeof (this.data as any).validate === 'function') { (this.data as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }