PaymentsData

data class PaymentsData(val electronic: Double, val cash: Double, val consideration: Double, val prepay: Double, val postpay: Double) : Parcelable

Data class representing the payments data.

Constructors

Link copied to clipboard
constructor(electronic: Double, cash: Double, consideration: Double, prepay: Double, postpay: Double)

Properties

Link copied to clipboard
val cash: Double

The total amount of the cash type payment.

Link copied to clipboard
val consideration: Double

The total amount of the consideration type payment.

Link copied to clipboard
val electronic: Double

The total amount of the electronic type payment.

Link copied to clipboard
val postpay: Double

The total amount of the postpay type payment.

Link copied to clipboard
val prepay: Double

The total amount of the prepay type payment.