import * as $dara from '@darabonba/typescript'; export declare class PrecheckYikeAIAppJobResponseBodyResult extends $dara.Model { /** * @remarks * The cause of the parameter validation error. * * @example * ImageCheckFailed */ errorCode?: string; /** * @remarks * The application parameter name. * * @example * LoadImage.1.TargetImage */ key?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class PrecheckYikeAIAppJobResponseBody extends $dara.Model { /** * @remarks * Request ID. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * Returned if the precheck fails. This parameter contains only the parameters that failed the check. */ result?: PrecheckYikeAIAppJobResponseBodyResult[]; /** * @remarks * The precheck result. Valid values are: * * - Success: The precheck was successful. * * - Failed: The precheck failed. * * @example * Success */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }