docs/BankAccountSearchMessage.md in buildium-ruby-2.0.1 vs docs/BankAccountSearchMessage.md in buildium-ruby-2.1.0
- old
+ new
@@ -4,17 +4,19 @@
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **bank_account_status** | **String** | Filters results by the status of the bank account. If no status is specified, bank accounts with any status will be returned. | [optional] |
| **bank_name** | **String** | Filters results to any bank account whose name *contains* the specified value. | [optional] |
+| **routing_numbers** | **Array<String>** | Filters results to any bank accounts whose routing number *contains* the specified value. | [optional] |
## Example
```ruby
require 'buildium-ruby'
instance = Buildium::BankAccountSearchMessage.new(
bank_account_status: null,
- bank_name: null
+ bank_name: null,
+ routing_numbers: null
)
```