# Plaid::BankTransferFailure ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **ach_return_code** | **String** | The ACH return code, e.g. `R01`. A return code will be provided if and only if the transfer status is `reversed`. For a full listing of ACH return codes, see [Bank Transfers errors](/docs/errors/bank-transfers/#ach-return-codes). | [optional] | | **description** | **String** | A human-readable description of the reason for the failure or reversal. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::BankTransferFailure.new( ach_return_code: null, description: null ) ```