src/app/ach-setup/models/financial-institution.ts
Properties |
id |
id:
|
Type : string
|
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;
}