// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListTagResourcesResponseBodyTagResourcesTagResource extends $dara.Model { resourceId?: string; resourceType?: string; tagKey?: string; tagValue?: string; static names(): { [key: string]: string } { return { resourceId: 'ResourceId', resourceType: 'ResourceType', tagKey: 'TagKey', tagValue: 'TagValue', }; } static types(): { [key: string]: any } { return { resourceId: 'string', resourceType: 'string', tagKey: 'string', tagValue: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListTagResourcesResponseBodyTagResources extends $dara.Model { tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[]; static names(): { [key: string]: string } { return { tagResource: 'TagResource', }; } static types(): { [key: string]: any } { return { tagResource: { 'type': 'array', 'itemType': ListTagResourcesResponseBodyTagResourcesTagResource }, }; } validate() { if(Array.isArray(this.tagResource)) { $dara.Model.validateArray(this.tagResource); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListTagResourcesResponseBody extends $dara.Model { /** * @remarks * The token that determines the start point of the next query. * * A NextToken value of -1 indicates that a next query does not exist. * * @example * 1d2db86sca4384811e0b5e8707e68181f */ nextToken?: string; /** * @remarks * The ID of the request. * * @example * 2D69A58F-345C-4FDE-88E4-BF5189484043 */ requestId?: string; tagResources?: ListTagResourcesResponseBodyTagResources; static names(): { [key: string]: string } { return { nextToken: 'NextToken', requestId: 'RequestId', tagResources: 'TagResources', }; } static types(): { [key: string]: any } { return { nextToken: 'string', requestId: 'string', tagResources: ListTagResourcesResponseBodyTagResources, }; } validate() { if(this.tagResources && typeof (this.tagResources as any).validate === 'function') { (this.tagResources as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }