Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.36 KB

PaymentEventResponse.md

File metadata and controls

40 lines (34 loc) · 1.36 KB

VeloPayments::PaymentEventResponse

Properties

Name Type Description Notes
event_id String The id of the event.
event_date_time Time The date/time at which the event occurred.
event_type String The type of the event.
source_currency PaymentAuditCurrency [optional]
source_amount Integer The source amount exposed by the event. [optional]
payment_currency PaymentAuditCurrency [optional]
payment_amount Integer The destination amount exposed by the event. [optional]
account_number String The account number attached to the event. [optional]
routing_number String The routing number attached to the event. [optional]
iban String [optional]
account_name String [optional]
principal String [optional]

Example

require 'velopayments'

instance = VeloPayments::PaymentEventResponse.new(
  event_id: null,
  event_date_time: null,
  event_type: null,
  source_currency: null,
  source_amount: 1299,
  payment_currency: null,
  payment_amount: 1299,
  account_number: null,
  routing_number: null,
  iban: null,
  account_name: null,
  principal: null
)