Sha256: 0350fa17f979bf96661e33d29db89fdef0dfedd7c911dc665ae033f38b769019
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
# VeloPayments::PaymentChannelSummaryV4 ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **payment_channel_id** | **String** | | | | **name** | **String** | The payment channel name | | | **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. | | | **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. | | | **last4_digits** | **String** | The last 4 digits of the account number or IBAN | [optional] | | **enabled** | **Boolean** | Usually true. False if an associated payment is returned | | | **disabled_reason** | **String** | Indicates why the payment channel was disabled | [optional] | | **disabled_reason_code** | **String** | | [optional] | ## Example ```ruby require 'velopayments' instance = VeloPayments::PaymentChannelSummaryV4.new( payment_channel_id: 70faaff7-2c32-4b44-b27f-f0b6c484e6f3, name: Bank of America USD, country_code: US, currency: USD, last4_digits: 1234, enabled: false, disabled_reason: User request, disabled_reason_code: VR100 ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
velopayments-2.37.150.beta1 | docs/PaymentChannelSummaryV4.md |