Interface ProductDiscountPagedQueryResponse

All Superinterfaces:
ResourcePagedQueryResponse<ProductDiscount>
All Known Implementing Classes:
ProductDiscountPagedQueryResponseImpl

PagedQueryResult with results containing an array of ProductDiscount.


Example to create an instance using the builder pattern

     ProductDiscountPagedQueryResponse productDiscountPagedQueryResponse = ProductDiscountPagedQueryResponse.builder()
             .limit(0.3)
             .offset(0.3)
             .count(0.3)
             .plusResults(resultsBuilder -> resultsBuilder)
             .build()