Conekta::TransferMethodResponse

August 1, 2023 ยท View on GitHub

Properties

NameTypeDescriptionNotes
account_holderStringName of the account holder.[optional]
account_numberStringAccount number of the bank account.[optional]
bankStringName of the bank.[optional]
created_atIntegerDate and time of creation of the transfer.[optional]
idStringUnique identifier of the transfer.[optional]
objectStringObject name, which is bank_transfer_payout_method.[optional]
payee_idStringUnique identifier of the payee.[optional]
typeStringType of the payee.[optional]

Example

require 'conekta'

instance = Conekta::TransferMethodResponse.new(
  account_holder: John Doe,
  account_number: 012180023547896764,
  bank: BBVA Bancomer,
  created_at: 1553273553,
  id: pytmtd_2ide3qwTdDvNBosEC,
  object: bank_transfer_payout_method,
  payee_id: payee_2icdDewRxDENBos85,
  type: BankTransferPayoutMethod
)