import * as $dara from '@darabonba/typescript'; export declare class GetDemonstrationForCustomizedVoiceJobResponseBodyDataDemonstrationList extends $dara.Model { /** * @remarks * The sequence number of the text, which corresponds to the AduioRecordId parameter to be passed during audio check. * * @example * 2 */ audioId?: number; /** * @remarks * The URL of the sample audio. * * * The value is an Object Storage Service (OSS) URL. * * ** * * **Note**: The URL expires in 12 hours. * * @example * http://bucket.oss-cn-shanghai.aliyuncs.com/1.wav */ demoAudio?: string; /** * @remarks * The text content to be read. */ text?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetDemonstrationForCustomizedVoiceJobResponseBodyData extends $dara.Model { /** * @remarks * A list of 20 text entries to be read and the corresponding sample audio. */ demonstrationList?: GetDemonstrationForCustomizedVoiceJobResponseBodyDataDemonstrationList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetDemonstrationForCustomizedVoiceJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: GetDemonstrationForCustomizedVoiceJobResponseBodyData; /** * @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; }); }