import * as $dara from '@darabonba/typescript'; export declare class DryRunSwaggerResponseBodyFailedApiImportSwaggerFailed extends $dara.Model { errorMsg?: string; httpMethod?: string; path?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodyFailed extends $dara.Model { apiImportSwaggerFailed?: DryRunSwaggerResponseBodyFailedApiImportSwaggerFailed[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodyModelFailedApiImportModelFailed extends $dara.Model { errorMsg?: string; groupId?: string; modelName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodyModelFailed extends $dara.Model { apiImportModelFailed?: DryRunSwaggerResponseBodyModelFailedApiImportModelFailed[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodyModelSuccessApiImportModelSuccess extends $dara.Model { groupId?: string; modelName?: string; modelOperation?: string; modelUid?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodyModelSuccess extends $dara.Model { apiImportModelSuccess?: DryRunSwaggerResponseBodyModelSuccessApiImportModelSuccess[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodySuccessApiDryRunSwaggerSuccess extends $dara.Model { apiOperation?: string; apiSwagger?: string; apiUid?: string; httpMethod?: string; path?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBodySuccess extends $dara.Model { apiDryRunSwaggerSuccess?: DryRunSwaggerResponseBodySuccessApiDryRunSwaggerSuccess[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DryRunSwaggerResponseBody extends $dara.Model { failed?: DryRunSwaggerResponseBodyFailed; /** * @remarks * The global condition. * * @example * {} */ globalCondition?: string; modelFailed?: DryRunSwaggerResponseBodyModelFailed; modelSuccess?: DryRunSwaggerResponseBodyModelSuccess; /** * @remarks * The ID of the request. * * @example * EF924FE4-2EDD-4CD3-89EC-34E4708574E7 */ requestId?: string; success?: DryRunSwaggerResponseBodySuccess; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }