Sha256: f261830482700adb6554162d2e472f16c0e76f8418996738e77079d7a1e5ec5a
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# VeloPayments::UpdatePaymentChannelRequestV4 ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **routing_number** | **String** | | [optional] | | **account_number** | **String** | | [optional] | | **iban** | **String** | Must match the regular expression ```^[A-Za-z0-9]+$```. | [optional] | | **payment_channel_name** | **String** | | [optional] | | **country_code** | **String** | Valid ISO 3166 2 character country code. See the <a href=\"https://www.iso.org/iso-3166-country-codes.html\" target=\"_blank\" a>ISO specification</a> for details. | [optional] | | **account_name** | **String** | | [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] | ## Example ```ruby require 'velopayments' instance = VeloPayments::UpdatePaymentChannelRequestV4.new( routing_number: XXXXX6789, account_number: XXXXXX5678, iban: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234, payment_channel_name: My Payment Channel, country_code: US, account_name: My Account, currency: USD ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
velopayments-2.37.150.beta1 | docs/UpdatePaymentChannelRequestV4.md |