# 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**](PaymentAuditCurrency.md) | | [optional] | | **source_amount** | **Integer** | The source amount exposed by the event. | [optional] | | **payment_currency** | [**PaymentAuditCurrency**](PaymentAuditCurrency.md) | | [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 ```ruby 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 ) ```