import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionLibsRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm. Valid values: * * - landmark * * - object * * - logo * * - face * * - label * * This parameter is required. * * @example * landmark */ algorithm?: string; /** * @remarks * Library ID. If provided, the query returns only this specific library. A list of IDs separated by commas (",") is also supported. * * @example * lib1,lib2,lib3 */ libId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. * * This parameter is required. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Valid values: 1 to 50. * * This parameter is required. * * @example * 10 */ pageSize?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }