Sha256: 228a2ca30bc3322ae4139abcbf63e0129120c1d1f6351a03a1d75b3c4edfc286
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
# VeloPayments::TransactionResponse ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **transaction_id** | **String** | The Id of the transaction | | | **transaction_short_code** | **String** | The short code for the transaction that can be used when sending funds into the platform | | | **payor_id** | **String** | Indicates the Payor of the Transaction and which matches the payorId on the provided source account | [optional] | | **source_account_name** | **String** | The name of the source account associated with the Transaction | [optional] | | **source_account_id** | **String** | The Id of the source account associated with the Transaction | [optional] | | **transaction_reference** | **String** | The payors own reference for the transaction | [optional] | | **transaction_metadata** | **Hash<String, String>** | Optional metadata attached to the transaction at creation time. | [optional] | | **balance** | **Integer** | The total amount of transaction in minor units | [optional] | | **currency** | **String** | Valid ISO 4217 3 letter currency code. See the <a href=\"https://www.iso.org/iso-4217-currency-codes.html\" target=\"_blank\" a>ISO specification</a> for details. | [optional] | | **created_at** | **Time** | A timestamp when the transaction has been created. | [optional] | ## Example ```ruby require 'velopayments' instance = VeloPayments::TransactionResponse.new( transaction_id: 4d88e559-d057-45b1-8d8b-b9ccc06f4503, transaction_short_code: T1234ABC, payor_id: null, source_account_name: Payor_FOO_USD_Account, source_account_id: 7faf83a7-77e2-40bc-9e78-7d18fa2bb63e, transaction_reference: myInvoiceNumber-1234567890, transaction_metadata: null, balance: null, currency: USD, created_at: 2021-01-27T10:08:25.701Z ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
velopayments-2.37.150.beta1 | docs/TransactionResponse.md |