Interface ProductsInStorePagedQueryResponse

All Superinterfaces:
ResourcePagedQueryResponse<ProductSelectionAssignment>

public interface ProductsInStorePagedQueryResponse extends ResourcePagedQueryResponse<ProductSelectionAssignment>

PagedQueryResult containing an array of ProductSelectionAssignment.


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()