import * as $dara from '@darabonba/typescript'; export declare class RemoveAppsAuthoritiesRequest extends $dara.Model { /** * @remarks * The ID of the API. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * baacc592e63a4cb6a41920d9d3f91f38 */ apiId?: string; /** * @remarks * The IDs of applications. Separate multiple application IDs with commas (,). A maximum of 100 applications IDs can be entered. * * This parameter is required. * * @example * 2386789,3286798 */ appIds?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **TEST** * * This parameter is required. * * @example * TEST */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }