// 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 * A pagination token. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; /** * @remarks * The request ID. * * @example * 484256DA-D816-44D2-9D86-B6EE4D5BA78C */ 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); } }