src/app/ach-setup/models/financial-institution.ts
Properties |
| checkPictureId |
checkPictureId:
|
Type : string
|
| cutOff |
cutOff:
|
Type : string
|
| domain |
domain:
|
Type : string
|
| id |
id:
|
Type : string
|
| logoPictureId |
logoPictureId:
|
Type : string
|
| logoUrl |
logoUrl:
|
Type : string
|
| name |
name:
|
Type : string
|
| rTN |
rTN:
|
Type : string
|
| settings |
settings:
|
Type : FinancialInstitutionSetting[]
|
export interface FinancialInstitutionSetting {
id: string;
// todo add additonal properties if needed
}
export interface FinancialInstitution {
id: string;
name: string;
domain: string;
rTN: string;
logoPictureId: string;
checkPictureId: string;
cutOff: string;
settings: FinancialInstitutionSetting[];
logoUrl: string;
}