import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionEntitiesRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm associated with the entity. Valid values: * * * landmark * * object * * logo * * face * * label * * This parameter is required. * * @example * landmark */ algorithm?: string; /** * @remarks * The ID of the recognition library. * * This parameter is required. * * @example * 1965304870001 */ 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; }); }