import * as $dara from '@darabonba/typescript'; export declare class ListCustomizedVoicesResponseBodyDataCustomizedVoiceList extends $dara.Model { /** * @remarks * The media asset ID of the sample audio file. * * @example * ****4d5e829d498aaf966b119348**** */ demoAudioMediaId?: string; /** * @remarks * The gender. Valid values: * * * female * * male * * @example * male */ gender?: string; /** * @remarks * The scenario. Valid values: * * * story * * interaction * * navigation * * @example * story */ scenario?: string; /** * @remarks * * The voice type. Valid values: * * * Basic * * Standard * * @example * Standard */ type?: string; /** * @remarks * The voice description. */ voiceDesc?: string; /** * @remarks * The voice ID. * * @example * xiaozhuan */ voiceId?: string; /** * @remarks * The voice name. */ voiceName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListCustomizedVoicesResponseBodyData extends $dara.Model { /** * @remarks * The queried personalized human voices. */ customizedVoiceList?: ListCustomizedVoicesResponseBodyDataCustomizedVoiceList[]; /** * @remarks * The total number of entries returned. * * @example * 41 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListCustomizedVoicesResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: ListCustomizedVoicesResponseBodyData; /** * @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; }); }