import * as $dara from '@darabonba/typescript'; export declare class DetectAudioForCustomizedVoiceJobResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether the audio file passes the check. Valid values: * * * true * * false * * @example * false */ pass?: boolean; /** * @remarks * The reason returned if the audio file failed to pass the check. */ reason?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DetectAudioForCustomizedVoiceJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: DetectAudioForCustomizedVoiceJobResponseBodyData; /** * @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; }); }