// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteApiGroupRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * This parameter is required. * * @example * key */ key?: string; /** * @remarks * The value of the tag. * * This parameter is required. * * @example * value */ value?: string; static names(): { [key: string]: string } { return { key: 'Key', value: 'Value', }; } static types(): { [key: string]: any } { return { key: 'string', value: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteApiGroupRequest extends $dara.Model { /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: string; securityToken?: string; /** * @remarks * The object tags that match the lifecycle rule. You can specify multiple tags. * * @example * Key, Value */ tag?: DeleteApiGroupRequestTag[]; static names(): { [key: string]: string } { return { groupId: 'GroupId', securityToken: 'SecurityToken', tag: 'Tag', }; } static types(): { [key: string]: any } { return { groupId: 'string', securityToken: 'string', tag: { 'type': 'array', 'itemType': DeleteApiGroupRequestTag }, }; } validate() { if(Array.isArray(this.tag)) { $dara.Model.validateArray(this.tag); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }