Sha256: 4741c7b61e730df9b6fb2f079dd9284d17dde17ee98dc3750c936cd1181a1917
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# Plaid::SandboxBankTransferSimulateRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **client_id** | **String** | Your Plaid API `client_id`. | [optional] | | **secret** | **String** | Your Plaid API `secret`. | [optional] | | **bank_transfer_id** | **String** | Plaid’s unique identifier for a bank transfer. | | | **event_type** | **String** | The asynchronous event to be simulated. May be: `posted`, `failed`, or `reversed`. An error will be returned if the event type is incompatible with the current transfer status. Compatible status --> event type transitions include: `pending` --> `failed` `pending` --> `posted` `posted` --> `reversed` | | | **failure_reason** | [**BankTransferFailure**](BankTransferFailure.md) | | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::SandboxBankTransferSimulateRequest.new( client_id: null, secret: null, bank_transfer_id: null, event_type: null, failure_reason: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems