src/app/modules/daily-processing/models/i-ach-summary.ts
Properties |
| entries |
entries:
|
Type : IAchSummaryEntry[]
|
export interface IAchSummaryEntry {
key: string;
credit: number;
debit: number;
}
export interface IAchSummary {
entries: IAchSummaryEntry[];
}