// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { algorithm: 'Algorithm', libId: 'LibId', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', pageNumber: 'PageNumber', pageSize: 'PageSize', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { algorithm: 'string', libId: 'string', ownerAccount: 'string', ownerId: 'number', pageNumber: 'number', pageSize: 'number', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }