src/app/models/i-plaid-account.model.ts
Properties |
| accountId |
accountId:
|
Type : string
|
| accountNumber |
accountNumber:
|
Type : string
|
| displayName |
displayName:
|
Type : string
|
| itemId |
itemId:
|
Type : string
|
| selected |
selected:
|
Type : boolean
|
export interface IPlaidAccount {
itemId: string;
accountId: string;
displayName: string;
accountNumber: string;
selected: boolean;
}