Sha256: ed4b1f68e10726ad4c17ff29596f2082a842592da90ce55632f7b5657d26606d
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# VeloPayments::CreatePaymentChannelRequestV4 ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **payment_channel_name** | **String** | | [optional] | | **iban** | **String** | Must match the regular expression ```^[A-Za-z0-9]+$```. | [optional] | | **account_number** | **String** | | [optional] | | **routing_number** | **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] | | **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] | | **account_name** | **String** | | [optional] | ## Example ```ruby require 'velopayments' instance = VeloPayments::CreatePaymentChannelRequestV4.new( payment_channel_name: My Payment Channel, iban: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234, account_number: XXXXXX5678, routing_number: XXXXX6789, country_code: US, currency: USD, account_name: My Account ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
velopayments-2.37.150.beta1 | docs/CreatePaymentChannelRequestV4.md |