docs/SupportedCountry.md in velopayments-2.23.78.beta1 vs docs/SupportedCountry.md in velopayments-2.26.124.beta1
- old
+ new
@@ -1,19 +1,20 @@
# VeloPayments::SupportedCountry
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**iso_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]
-**currencies** | **Array<String>** | | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **iso_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] |
+| **currencies** | **Array<String>** | | [optional] |
-## Code Sample
+## Example
```ruby
-require 'VeloPayments'
+require 'velopayments'
-instance = VeloPayments::SupportedCountry.new(iso_country_code: US,
- currencies: null)
+instance = VeloPayments::SupportedCountry.new(
+ iso_country_code: US,
+ currencies: null
+)
```
-