Conekta::PaymentMethodBnplPayment

July 21, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typeString[optional]
objectString
cancel_urlStringURL to redirect the customer after a canceled payment[optional]
expires_atIntegerExpiration date of the charge
failure_urlStringURL to redirect the customer after a failed payment[optional]
product_typeStringProduct type of the charge
redirect_urlStringURL to redirect the customer to complete the payment[optional]
success_urlStringURL to redirect the customer after a successful payment[optional]

Example

require 'conekta'

instance = Conekta::PaymentMethodBnplPayment.new(
  type: null,
  object: null,
  cancel_url: https://example.com/cancel,
  expires_at: 1683053729,
  failure_url: https://example.com/failure,
  product_type: null,
  redirect_url: https://example.com/redirect,
  success_url: https://example.com/success
)