status

val status: String? = null

Parameters

status

Current status of the payment method

Example:

val paymentMethod = PaymentMethod(
id = "visa",
paymentTypeId = "credit_card",
card = CardModel(
bin = 411111,
length = LengthModel(min = 16, max = 16),
securityCode = SecurityCodeModel(
mode = "mandatory",
length = 3
)
)
)