docs/FundingPayorStatusAuditResponse.md in velopayments-2.20.119 vs docs/FundingPayorStatusAuditResponse.md in velopayments-2.23.78.beta1

- old
+ new

@@ -4,20 +4,20 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **funding_id** | **String** | | [optional] **amount** | **Integer** | | [optional] -**currency** | [**CurrencyType**](CurrencyType.md) | | [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] **status** | **String** | | [optional] ## Code Sample ```ruby require 'VeloPayments' instance = VeloPayments::FundingPayorStatusAuditResponse.new(funding_id: null, amount: null, - currency: null, + currency: USD, status: null) ```