Conekta::TransferResponse

August 1, 2023 ยท View on GitHub

Properties

NameTypeDescriptionNotes
amountIntegerAmount in cents of the transfer.[optional]
created_atIntegerDate and time of creation of the transfer in Unix format.[optional]
currencyStringThe currency of the transfer. It uses the 3-letter code of the International Standard ISO 4217.[optional]
idStringUnique identifier of the transfer.[optional]
livemodeBooleanIndicates whether the transfer was created in live mode or test mode.[optional]
destinationTransferDestinationResponse[optional]
objectStringObject name, which is transfer.[optional]
statement_descriptionStringDescription of the transfer.[optional]
statement_referenceStringReference number of the transfer.[optional]
statusStringCode indicating transfer status.[optional]

Example

require 'conekta'

instance = Conekta::TransferResponse.new(
  amount: 10000,
  created_at: 1553273553,
  currency: MXN,
  id: 5b0337d4dD344ef954fe1X4b6,
  livemode: true,
  destination: null,
  object: transfer,
  statement_description: Conekta 4401234,
  statement_reference: 4401234,
  status: pending
)