PayinDetails

class PayinDetails(val currencyCode: String, val min: String? = null, val max: String? = null, val methods: List<PayinMethod>) : PaymentDetails

A data class containing information pertaining to payin.

Parameters

currencyCode

ISO 3166 currency code string

min

Minimum amount of currency that the offer is valid for

max

Maximum amount of currency that the offer is valid for

methods

A list of payin methods to select from

Constructors

Link copied to clipboard
constructor(currencyCode: String, min: String? = null, max: String? = null, methods: List<PayinMethod>)

Properties

Link copied to clipboard

ISO 3166 currency code string.

Link copied to clipboard
val max: String? = null

Minimum amount of currency that the offer is valid for.

Link copied to clipboard

A list of payment methods to select from.

Link copied to clipboard
val min: String? = null

Minimum amount of currency that the offer is valid for.