import * as $dara from '@darabonba/typescript'; export declare class AddTrafficSpecialControlRequest extends $dara.Model { securityToken?: string; /** * @remarks * The ID of the app or Alibaba Cloud account. Specify this parameter based on the value of the **SpecialType** parameter. You can view your account ID on the [Account Management](https://account.console.aliyun.com/?spm=a2c4g.11186623.2.15.3f053654YpMPwo#/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 specified throttling policy. * * This parameter is required. * * @example * tf123456 */ trafficControlId?: string; /** * @remarks * The special throttling value. * * This parameter is required. * * @example * 10000 */ trafficValue?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }