docs/SupportedCurrency.md in velopayments-2.19.40.beta1 vs docs/SupportedCurrency.md in velopayments-2.19.116

- old
+ new

@@ -2,18 +2,18 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**currency** | **String** | ISO Currency Code | [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] **max_payment_amount** | **Integer** | The max amount allowed in this currency | [optional] ## Code Sample ```ruby require 'VeloPayments' -instance = VeloPayments::SupportedCurrency.new(currency: GBP, +instance = VeloPayments::SupportedCurrency.new(currency: USD, max_payment_amount: 100000) ```