DLInstallmentsPlan

@Serializable
data class DLInstallmentsPlan(val id: String, val installments: Int, val installmentAmount: Double, val totalAmount: Double)

Constructors

Link copied to clipboard
constructor(id: String, installments: Int, installmentAmount: Double, totalAmount: Double)

Properties

Link copied to clipboard
val id: String
Link copied to clipboard
@SerialName(value = "installment_amount")
val installmentAmount: Double
Link copied to clipboard
@SerialName(value = "installments")
val installments: Int
Link copied to clipboard
@SerialName(value = "total_amount")
val totalAmount: Double