import * as $dara from '@darabonba/typescript'; export declare class DescribeTrafficControlsByApiRequest extends $dara.Model { /** * @remarks * The ID of the API. * * This parameter is required. * * @example * 3b81fd160f5645e097cc8855d75a1cf6 */ apiId?: string; /** * @remarks * The ID of the group to which the API to be queried belongs. * * This parameter is required. * * @example * 0009db9c828549768a200320714b8930 */ groupId?: string; securityToken?: string; /** * @remarks * The runtime environment of the API. Valid values: * * * **RELEASE** * * **TEST** * * This parameter is required. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }