PaymentsOverview

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

totalPages

the total number of pages the transactions are split into on backend

currentPage

the current page number

isLast

flag indicating if the current page is the last on the backend

isFirst

flag indicating if the current page is the first on the backend

Constructors

Link copied to clipboard
constructor(transactions: List<Transaction>, totalPages: Int, currentPage: Int, isLast: Boolean, isFirst: Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard