Interface PaymentPagedQueryResponse

All Superinterfaces:
ResourcePagedQueryResponse<Payment>
All Known Implementing Classes:
PaymentPagedQueryResponseImpl

PagedQueryResult with results containing an array of Payment.


Example to create an instance using the builder pattern

     PaymentPagedQueryResponse paymentPagedQueryResponse = PaymentPagedQueryResponse.builder()
             .limit(0.3)
             .count(0.3)
             .offset(0.3)
             .plusResults(resultsBuilder -> resultsBuilder)
             .build()