import * as $dara from '@darabonba/typescript'; export declare class ImportSwaggerShrinkRequest 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 pre-inspection. * * @example * true */ dryRun?: boolean; /** * @remarks * The global conditions. * * @example * {} */ globalConditionShrink?: string; /** * @remarks * The ID of the API group to which the Swagger is imported. * * This parameter is required. * * @example * 0009db9c828549768a200320714b8930 */ 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; }); }