// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeApisByBackendResponseBodyApiInfoListApiInfo extends $dara.Model { apiId?: string; apiName?: string; description?: string; groupId?: string; groupName?: string; method?: string; path?: string; static names(): { [key: string]: string } { return { apiId: 'ApiId', apiName: 'ApiName', description: 'Description', groupId: 'GroupId', groupName: 'GroupName', method: 'Method', path: 'Path', }; } static types(): { [key: string]: any } { return { apiId: 'string', apiName: 'string', description: 'string', groupId: 'string', groupName: 'string', method: 'string', path: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeApisByBackendResponseBodyApiInfoList extends $dara.Model { apiInfo?: DescribeApisByBackendResponseBodyApiInfoListApiInfo[]; static names(): { [key: string]: string } { return { apiInfo: 'ApiInfo', }; } static types(): { [key: string]: any } { return { apiInfo: { 'type': 'array', 'itemType': DescribeApisByBackendResponseBodyApiInfoListApiInfo }, }; } validate() { if(Array.isArray(this.apiInfo)) { $dara.Model.validateArray(this.apiInfo); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeApisByBackendResponseBody extends $dara.Model { apiInfoList?: DescribeApisByBackendResponseBodyApiInfoList; /** * @remarks * The number of the current page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned on each page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * CEB6EC62-B6C7-5082-A45A-45A204724AC2 */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string } { return { apiInfoList: 'ApiInfoList', pageNumber: 'PageNumber', pageSize: 'PageSize', requestId: 'RequestId', totalCount: 'TotalCount', }; } static types(): { [key: string]: any } { return { apiInfoList: DescribeApisByBackendResponseBodyApiInfoList, pageNumber: 'number', pageSize: 'number', requestId: 'string', totalCount: 'number', }; } validate() { if(this.apiInfoList && typeof (this.apiInfoList as any).validate === 'function') { (this.apiInfoList as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }