Class ProductsInStorePagedQueryResponseBuilder
- All Implemented Interfaces:
Builder<ProductsInStorePagedQueryResponse>
Example to create an instance using the builder pattern
ProductsInStorePagedQueryResponse productsInStorePagedQueryResponse = ProductsInStorePagedQueryResponse.builder()
.limit(0.3)
.offset(0.3)
.count(0.3)
.plusResults(resultsBuilder -> resultsBuilder)
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionProductSelectionAssignments matching the query.build()
builds ProductsInStorePagedQueryResponse with checking for non-null required valuesbuilds ProductsInStorePagedQueryResponse without checking for non-null required valuesActual number of results returned.getCount()
Actual number of results returned.getLimit()
Number of results requested.Number of elements skipped.ProductSelectionAssignments matching the query.getTotal()
Total number of results matching the query.Number of results requested.of()
factory method for an instance of ProductsInStorePagedQueryResponseBuilderof
(ProductsInStorePagedQueryResponse template) create builder for ProductsInStorePagedQueryResponse instanceNumber of elements skipped.plusResults
(ProductSelectionAssignment... results) ProductSelectionAssignments matching the query.ProductSelectionAssignments matching the query.results
(ProductSelectionAssignment... results) ProductSelectionAssignments matching the query.results
(List<ProductSelectionAssignment> results) ProductSelectionAssignments matching the query.ProductSelectionAssignments matching the query.Total number of results matching the query.ProductSelectionAssignments matching the query.
-
Constructor Details
-
ProductsInStorePagedQueryResponseBuilder
public ProductsInStorePagedQueryResponseBuilder()
-
-
Method Details
-
limit
Number of results requested.
- Parameters:
limit
- value to be set- Returns:
- Builder
-
offset
Number of elements skipped.
- Parameters:
offset
- value to be set- Returns:
- Builder
-
count
Actual number of results returned.
- Parameters:
count
- value to be set- Returns:
- Builder
-
total
Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get
total
, pass the query parameterwithTotal
set totrue
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Parameters:
total
- value to be set- Returns:
- Builder
-
results
ProductSelectionAssignments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
results
ProductSelectionAssignments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
ProductSelectionAssignments matching the query.
- Parameters:
results
- value to be set- Returns:
- Builder
-
plusResults
public ProductsInStorePagedQueryResponseBuilder plusResults(Function<ProductSelectionAssignmentBuilder, ProductSelectionAssignmentBuilder> builder) ProductSelectionAssignments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
withResults
public ProductsInStorePagedQueryResponseBuilder withResults(Function<ProductSelectionAssignmentBuilder, ProductSelectionAssignmentBuilder> builder) ProductSelectionAssignments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
addResults
public ProductsInStorePagedQueryResponseBuilder addResults(Function<ProductSelectionAssignmentBuilder, ProductSelectionAssignment> builder) ProductSelectionAssignments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
setResults
public ProductsInStorePagedQueryResponseBuilder setResults(Function<ProductSelectionAssignmentBuilder, ProductSelectionAssignment> builder) ProductSelectionAssignments matching the query.
- Parameters:
builder
- function to build the results value- Returns:
- Builder
-
getLimit
Number of results requested.
- Returns:
- limit
-
getOffset
Number of elements skipped.
- Returns:
- offset
-
getCount
Actual number of results returned.
- Returns:
- count
-
getTotal
Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get
total
, pass the query parameterwithTotal
set totrue
. When the results are filtered with a Query Predicate,total
is subject to a limit.- Returns:
- total
-
getResults
ProductSelectionAssignments matching the query.
- Returns:
- results
-
build
builds ProductsInStorePagedQueryResponse with checking for non-null required values- Specified by:
build
in interfaceBuilder<ProductsInStorePagedQueryResponse>
- Returns:
- ProductsInStorePagedQueryResponse
-
buildUnchecked
builds ProductsInStorePagedQueryResponse without checking for non-null required values- Returns:
- ProductsInStorePagedQueryResponse
-
of
factory method for an instance of ProductsInStorePagedQueryResponseBuilder- Returns:
- builder
-
of
public static ProductsInStorePagedQueryResponseBuilder of(ProductsInStorePagedQueryResponse template) create builder for ProductsInStorePagedQueryResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-