agreements

val agreements: List<Agreements>? = null

Parameters

agreements

List of agreements and terms for the payment method

Example:

val installment = Installment(
paymentMethodId = "visa",
paymentTypeId = "credit_card",
issuer = Issuer(
id = "123",
thumbnail = "https://example.com/visa.png"
),
payerCost = listOf(
PayerCost(
instalments = 1,
installmentAmount = 100.0f,
totalAmount = 100.0f
)
)
)