Sha256: 3a0e21a3052df1f7bc9deb0d7e1318aa343445bff973e70d68fbfb23190eece9
Contents?: true
Size: 1005 Bytes
Versions: 3
Compression:
Stored size: 1005 Bytes
Contents
# Plaid::TransactionOverride ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **transaction_date** | **String** | The date of the transaction, in ISO8601 (YYYY-MM-DD) format. Transaction dates in the past or present will result in posted transactions; transaction dates in the future will result in pending transactions. Transactions in Sandbox will move from pending to posted once their transaction date has been reached. | | | **posted_date** | **String** | The date the transaction posted, in ISO8601 (YYYY-MM-DD) format | | | **amount** | **Float** | The transaction amount. Can be negative. | | | **description** | **String** | The transaction description. | | | **currency** | **String** | The ISO-4217 format currency code for the transaction. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::TransactionOverride.new( transaction_date: null, posted_date: null, amount: null, description: null, currency: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
plaid-14.0.0.beta.3 | docs/TransactionOverride.md |
plaid-14.0.0.beta.2 | docs/TransactionOverride.md |
plaid-14.0.0.beta.1 | docs/TransactionOverride.md |