import * as $dara from '@darabonba/typescript'; export declare class DeleteTrafficSpecialControlRequest extends $dara.Model { securityToken?: string; /** * @remarks * The ID of the app or Alibaba Cloud account. You can view your account ID on the [Account Management](https://account.console.aliyun.com/?spm=a2c4g.11186623.2.15.343130a8sDi8cO#/secure) page. * * This parameter is required. * * @example * 3382463 */ specialKey?: string; /** * @remarks * The type of the special throttling policy. Valid values: * * * **APP** * * **USER** * * This parameter is required. * * @example * APP */ specialType?: string; /** * @remarks * The ID of the throttling policy. * * This parameter is required. * * @example * tf123456 */ trafficControlId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }