// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListRecognitionLibsResponseBodyLibsLib extends $dara.Model { libDescription?: string; libId?: string; libName?: string; static names(): { [key: string]: string } { return { libDescription: 'LibDescription', libId: 'LibId', libName: 'LibName', }; } static types(): { [key: string]: any } { return { libDescription: 'string', libId: 'string', libName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRecognitionLibsResponseBodyLibs extends $dara.Model { lib?: ListRecognitionLibsResponseBodyLibsLib[]; static names(): { [key: string]: string } { return { lib: 'Lib', }; } static types(): { [key: string]: any } { return { lib: { 'type': 'array', 'itemType': ListRecognitionLibsResponseBodyLibsLib }, }; } validate() { if(Array.isArray(this.lib)) { $dara.Model.validateArray(this.lib); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRecognitionLibsResponseBody extends $dara.Model { libs?: ListRecognitionLibsResponseBodyLibs; /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 180 */ totalCount?: number; static names(): { [key: string]: string } { return { libs: 'Libs', pageNumber: 'PageNumber', pageSize: 'PageSize', requestId: 'RequestId', totalCount: 'TotalCount', }; } static types(): { [key: string]: any } { return { libs: ListRecognitionLibsResponseBodyLibs, pageNumber: 'number', pageSize: 'number', requestId: 'string', totalCount: 'number', }; } validate() { if(this.libs && typeof (this.libs as any).validate === 'function') { (this.libs as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }