-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
1,280 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# MoneyKit::AccountNumbersLegacy20230218 | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **ach** | [**Array<AchNumber>**](AchNumber.md) | | | | ||
| **bacs** | [**Array<BacsNumber>**](BacsNumber.md) | | | | ||
| **eft** | [**Array<EftNumber>**](EftNumber.md) | | | | ||
| **international** | [**Array<InternationalNumber>**](InternationalNumber.md) | | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'moneykit' | ||
|
||
instance = MoneyKit::AccountNumbersLegacy20230218.new( | ||
ach: null, | ||
bacs: null, | ||
eft: null, | ||
international: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# MoneyKit::AccountWithAccountNumbersLegacy20230218 | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **account_id** | **String** | MoneyKit's unique ID for the account. <p>The `account_id` is distinct from the institution's account number. For accounts that may change account numbers from time to time, such as credit cards, MoneyKit attempts to keep the `account_id` constant. However, if MoneyKit can't reconcile the new account data with the old data, the `account_id` may change. | | | ||
| **account_type** | **String** | See <a href=/pages/account_types>Account Types</a> for an explanation of account types. Account types are dot-prefixed with one of `depository`, `investment`, `liability`, or `other`; or the value is `unknown`. <p>**Balances for `liability` accounts are reversed:** negative balances (the amount owed) are reported as positive values. For all other types of accounts, a negative balance indicates the amount owed. | | | ||
| **name** | **String** | The account name, according to the institution. Note that some institutions allow the end user to nickname the account; in such cases this field may be the name assigned by the user. | | | ||
| **account_mask** | **String** | The last four characters (usually digits) of the account number. Note that this mask may be non-unique between accounts. | [optional] | | ||
| **balances** | [**AccountBalances**](AccountBalances.md) | | | | ||
| **numbers** | [**AccountNumbersLegacy20230218**](AccountNumbersLegacy20230218.md) | | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'moneykit' | ||
|
||
instance = MoneyKit::AccountWithAccountNumbersLegacy20230218.new( | ||
account_id: acc_6Tef269B6ZArSVpYrxtjBV, | ||
account_type: depository.checking, | ||
name: Premier Checking, | ||
account_mask: 3748, | ||
balances: null, | ||
numbers: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# MoneyKit::GetAccountNumbersResponseLegacy20230218 | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **accounts** | [**Array<AccountWithAccountNumbersLegacy20230218>**](AccountWithAccountNumbersLegacy20230218.md) | | | | ||
| **link** | [**LinkCommon**](LinkCommon.md) | | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'moneykit' | ||
|
||
instance = MoneyKit::GetAccountNumbersResponseLegacy20230218.new( | ||
accounts: null, | ||
link: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.