src/app/models/limits.model.ts
Properties |
| credit |
credit:
|
Type : ILimit
|
| debit |
debit:
|
Type : ILimit
|
| electronic |
electronic:
|
Type : ILimit
|
| paper |
paper:
|
Type : ILimit
|
import { ILimit } from './i-limit.model';
export interface Limits {
// i don't believe i need these 2 limit types for a2a
// todo verify with Patrick
electronic: ILimit;
paper: ILimit;
credit: ILimit;
debit: ILimit;
}