# VeloPayments::SupportedCurrency

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**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: USD,
                                 max_payment_amount: 100000)
```