# Plaid::AuthGetNumbers ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **ach** | [**Array<NumbersACH>**](NumbersACH.md) | An array of ACH numbers identifying accounts. | [optional] | | **eft** | [**Array<NumbersEFT>**](NumbersEFT.md) | An array of EFT numbers identifying accounts. | [optional] | | **international** | [**Array<NumbersInternational>**](NumbersInternational.md) | An array of IBAN numbers identifying accounts. | [optional] | | **bacs** | [**Array<NumbersBACS>**](NumbersBACS.md) | An array of BACS numbers identifying accounts. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::AuthGetNumbers.new( ach: null, eft: null, international: null, bacs: null ) ```