Package-level declarations

Types

Link copied to clipboard
class PaymentBill(var id: String? = null, var dateIssued: String? = null, var amount: Double? = null, var type: String? = null, var status: String? = null, var statusMessage: String? = null, var credits: List<PaymentCredit?>? = emptyList())

PaymentBill — represents a monthly payment associated with a member.

Link copied to clipboard
class PaymentCredit(var id: Int? = null, var period: String? = null, var visits: Int? = null, var unitsEarned: Double? = null, var issuedBy: String? = null)

PaymentCredit — represents a credit that contributes to a PaymentBill.