SeekToConditionItemView.withBasePoint constructor

SeekToConditionItemView.withBasePoint(
  1. SearchFilter condition,
  2. int pageSize,
  3. OffsetBasePoint offsetBasePoint
)
Initializes a new instance of the Condition to be used when seeking. The maximum number of elements the search operation should return. The base point of the offset.

Implementation

SeekToConditionItemView.withBasePoint(SearchFilter condition, int pageSize,
    enumerations.OffsetBasePoint offsetBasePoint) {
  this.Condition = condition;
  this.PageSize = pageSize;
  this.serviceObjType = ServiceObjectType.Item;
  this.OffsetBasePoint = offsetBasePoint;
}