// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { apiId: 'ApiId', appIds: 'AppIds', groupId: 'GroupId', securityToken: 'SecurityToken', stageName: 'StageName', }; } static types(): { [key: string]: any } { return { apiId: 'string', appIds: 'string', groupId: 'string', securityToken: 'string', stageName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }