Sha256: 6f9f3ed41106c4b6019f656d2c4902b57368a2e0a53fe0a0a3feef1c4ccd409d

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

# Plaid::Numbers

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **account** | **String** | Will be used for the account number. |  |
| **ach_routing** | **String** | Must be a valid ACH routing number. |  |
| **ach_wire_routing** | **String** | Must be a valid wire transfer routing number. |  |
| **eft_institution** | **String** | EFT institution number. Must be specified alongside `eft_branch`. |  |
| **eft_branch** | **String** | EFT branch number. Must be specified alongside `eft_institution`. |  |
| **international_bic** | **String** | Bank identifier code (BIC). Must be specified alongside `international_iban`. |  |
| **international_iban** | **String** | International bank account number (IBAN). If no account number is specified via `account`, will also be used as the account number by default. Must be specified alongside `international_bic`. |  |
| **bacs_sort_code** | **String** | BACS sort code |  |

## Example

```ruby
require 'plaid'

instance = Plaid::Numbers.new(
  account: null,
  ach_routing: null,
  ach_wire_routing: null,
  eft_institution: null,
  eft_branch: null,
  international_bic: null,
  international_iban: null,
  bacs_sort_code: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
plaid-14.0.0.beta.4 docs/Numbers.md
plaid-14.0.0.beta.3 docs/Numbers.md
plaid-14.0.0.beta.2 docs/Numbers.md
plaid-14.0.0.beta.1 docs/Numbers.md