Sha256: fb13324235c63b52249ba42a81c394a783fad4145b705b27ec304af670e9f5d4
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
# Plaid::BankTransferListRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **client_id** | **String** | Your Plaid API `client_id`. | [optional] | | **secret** | **String** | Your Plaid API `secret`. | [optional] | | **start_date** | **Time** | The start datetime of bank transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`) | [optional] | | **end_date** | **Time** | The end datetime of bank transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`) | [optional] | | **count** | **Integer** | The maximum number of bank transfers to return. | [optional][default to 25] | | **offset** | **Integer** | The number of bank transfers to skip before returning results. | [optional][default to 0] | | **origination_account_id** | **String** | Filter bank transfers to only those originated through the specified origination account. | [optional] | | **direction** | [**BankTransferDirection**](BankTransferDirection.md) | | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::BankTransferListRequest.new( client_id: null, secret: null, start_date: null, end_date: null, count: null, offset: null, origination_account_id: null, direction: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
plaid-14.0.0.beta.3 | docs/BankTransferListRequest.md |
plaid-14.0.0.beta.2 | docs/BankTransferListRequest.md |
plaid-14.0.0.beta.1 | docs/BankTransferListRequest.md |