Sha256: 5562182f2575541d442ef7a011c5f9bec5b06fc4c8c0193b6101b6484696af79

Contents?: true

Size: 1.81 KB

Versions: 3

Compression:

Stored size: 1.81 KB

Contents

# VeloPayments::AcceptedPaymentV3

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **remote_id** | **String** | Your identifier for the payee |  |
| **currency_type** | **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. |  |
| **amount** | **Integer** | The amount of the payment in minor units |  |
| **source_account_name** | **String** | The identifier of the source account to debit the payment from |  |
| **payor_payment_id** | **String** | A reference identifier for the payor for the given payee payment |  |
| **payment_memo** | **String** | <p>Any value here will override the memo value in the parent payout</p> <p>This should be the reference field on the statement seen by the payee (but not via ACH)</p>  | [optional] |
| **remote_system_id** | **String** | <p>The identifier for the remote payments system if not Velo</p>  | [optional] |
| **payment_metadata** | **String** | <p>Metadata about the payment that may be relevant to the specific rails or remote system making the payout</p> <p>The structure of the data will be dictated by the requirements of the payment rails</p>  | [optional] |
| **rails_id** | **String** | Indicates the 3rd party system involved in making this payment |  |

## Example

```ruby
require 'velopayments'

instance = VeloPayments::AcceptedPaymentV3.new(
  remote_id: remoteId1234,
  currency_type: USD,
  amount: 10000,
  source_account_name: Chase Bank Account,
  payor_payment_id: 123211321ABSD,
  payment_memo: INV00112,
  remote_system_id: OB012,
  payment_metadata: invoiceeId_123|abc001:12345|xyz002:4567,
  rails_id: SVB
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
velopayments-2.37.150.beta1 docs/AcceptedPaymentV3.md
velopayments-2.35.58 docs/AcceptedPaymentV3.md
velopayments-2.35.58.beta1 docs/AcceptedPaymentV3.md