Payments Overview
data class PaymentsOverview(val transactions: List<Transaction>, val totalPages: Int, val currentPage: Int, val isLast: Boolean, val isFirst: Boolean)
Data class describing payments overview
Parameters
transactions
a list of Transaction objects to be displayed
total Pages
the total number of pages the transactions are split into on backend
current Page
the current page number
is Last
flag indicating if the current page is the last on the backend
is First
flag indicating if the current page is the first on the backend