import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionSamplesRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm. Valid values: * * - landmark * * - object * * - logo * * - face * * This parameter is required. * * @example * landmark */ algorithm?: string; /** * @remarks * The entity ID. If you set this parameter to ANY, the system queries by EntityName. * * This parameter is required. * * @example * **************544cb84754************ */ entityId?: string; /** * @remarks * The entity name. * * @example * custom_person */ entityName?: string; /** * @remarks * The library ID. If you specify this parameter, the system performs an exact match. You can specify multiple library IDs. Separate them with commas (,). * * This parameter is required. * * @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. * * 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; }); }