import * as $dara from '@darabonba/typescript'; export declare class SubmitCustomizedVoiceJobRequest extends $dara.Model { /** * @remarks * The URL of the sample audio file. * * * If this parameter is specified, a sample audio file is generated at the specified Object Storage Service (OSS) URL after the training is complete. * * * If this parameter is not specified, no sample audio file is generated. * * ** * * **Note**: The URL must be a valid public OSS URL within your Alibaba Cloud account. * * @example * https://your-bucket.oss-cn-shanghai.aliyuncs.com/demo.MP3 */ demoAudioMediaURL?: string; /** * @remarks * The voice ID. * * This parameter is required. * * @example * xiaozhuan */ voiceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }