import * as $dara from '@darabonba/typescript'; export declare class DryRunSwaggerRequest extends $dara.Model { /** * @remarks * The Swagger text content. * * This parameter is required. * * @example * "A Swagger API definition in YAML" */ data?: string; /** * @remarks * The Swagger text format: * * * json * * yaml * * This parameter is required. * * @example * yaml */ dataFormat?: string; /** * @remarks * The global condition. * * @example * {} */ globalCondition?: { [key: string]: any; }; /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * d633cf5524f841b9950e245b191bdabf */ groupId?: string; /** * @remarks * Specifies whether to overwrite the existing API. * * APIs with the same HTTP request type and backend request path are considered the same. * * This parameter is required. * * @example * true */ overwrite?: boolean; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }