import * as $dara from '@darabonba/typescript'; export declare class BatchAbolishApisRequestApi extends $dara.Model { /** * @remarks * The ID of the API. * * This parameter is required. * * @example * 994f72dcdaf04af0b38022c65fdbd1ac */ apiUid?: string; /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * ced5ab777f7b440398ea70e4470124de */ groupId?: string; /** * @remarks * The ID of the environment. * * @example * 979fd16250644d5b82173534f465ac77 */ stageId?: string; /** * @remarks * The name of the environment. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class BatchAbolishApisRequest extends $dara.Model { /** * @remarks * The APIs that you want to operate. * * This parameter is required. */ api?: BatchAbolishApisRequestApi[]; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }