Interface ProductTypePagedQueryResponse

All Superinterfaces:
ResourcePagedQueryResponse<ProductType>
All Known Implementing Classes:
ProductTypePagedQueryResponseImpl

PagedQueryResult with results containing an array of ProductType.


Example to create an instance using the builder pattern

     ProductTypePagedQueryResponse productTypePagedQueryResponse = ProductTypePagedQueryResponse.builder()
             .limit(0.3)
             .offset(0.3)
             .count(0.3)
             .plusResults(resultsBuilder -> resultsBuilder)
             .build()