src/app/models/template.model.ts
Properties |
Accessors |
constructor(cfg?: ITemplate)
|
||||||
Defined in src/app/models/template.model.ts:37
|
||||||
Parameters :
|
accountCategory |
Type : string
|
Defined in src/app/models/template.model.ts:29
|
accountNumber |
Type : string
|
Defined in src/app/models/template.model.ts:27
|
accountOwnerType |
Default value : AccountOwnerTypes.Personal
|
Defined in src/app/models/template.model.ts:32
|
accountType |
Default value : AccountTypes.Checking
|
Defined in src/app/models/template.model.ts:31
|
displayName |
Type : string
|
Default value : ''
|
Defined in src/app/models/template.model.ts:26
|
fee |
Type : number
|
Defined in src/app/models/template.model.ts:25
|
id |
Type : string
|
Defined in src/app/models/template.model.ts:23
|
isFrozen |
Default value : false
|
Defined in src/app/models/template.model.ts:34
|
isMicroDepositVerificationPending |
Default value : false
|
Defined in src/app/models/template.model.ts:36
|
micrAccountNumber |
Type : string
|
Defined in src/app/models/template.model.ts:28
|
name |
Type : string
|
Default value : ''
|
Defined in src/app/models/template.model.ts:24
|
permissions |
Default value : new Array<Permission>()
|
Defined in src/app/models/template.model.ts:33
|
requireMfaOnPaymentCreation |
Default value : false
|
Defined in src/app/models/template.model.ts:37
|
routingNumber |
Type : string
|
Defined in src/app/models/template.model.ts:30
|
selected |
Default value : false
|
Defined in src/app/models/template.model.ts:35
|
canCredit |
getcanCredit()
|
Defined in src/app/models/template.model.ts:67
|
canDebit |
getcanDebit()
|
Defined in src/app/models/template.model.ts:71
|
needsVerified |
getneedsVerified()
|
Defined in src/app/models/template.model.ts:75
|
import { AccountCategory } from '../enums/account-category.enum';
import { AccountOwnerTypes } from '../enums/account-owner-types.enum';
import { AccountTypes } from '../enums/account-types.enum';
import { Permission, IPermission } from './permission';
export interface ITemplate {
id: string;
name: string;
fee: number;
displayName: string;
accountNumber: string;
micrAccountNumber: string;
accountCategory: string;
routingNumber: string;
accountType: AccountTypes;
accountOwnerType: AccountOwnerTypes;
permissions: Array<IPermission>;
isFrozen: boolean;
isMicroDepositVerificationPending: false;
requireMfaOnPaymentCreation: false;
}
export class Template {
id: string;
name: string = '';
fee: number;
displayName: string = '';
accountNumber: string;
micrAccountNumber: string;
accountCategory: string;
routingNumber: string;
accountType = AccountTypes.Checking;
accountOwnerType = AccountOwnerTypes.Personal;
permissions = new Array<Permission>();
isFrozen = false;
selected = false;
isMicroDepositVerificationPending = false;
requireMfaOnPaymentCreation = false;
constructor(cfg?: ITemplate) {
if (!cfg) {
return;
}
this.id = cfg.id ? cfg.id : undefined;
this.isMicroDepositVerificationPending = cfg.isMicroDepositVerificationPending
? cfg.isMicroDepositVerificationPending
: false;
this.isFrozen = cfg.isFrozen ? cfg.isFrozen : false;
this.name = cfg.name ? cfg.name : '';
this.displayName = cfg.displayName ? cfg.displayName : '';
this.accountNumber = cfg.accountNumber ? cfg.accountNumber : undefined;
this.accountCategory = cfg.accountCategory
? cfg.accountCategory
: AccountCategory.CustomerEntered;
this.micrAccountNumber = cfg.micrAccountNumber ? cfg.micrAccountNumber : undefined;
this.routingNumber = cfg.routingNumber ? cfg.routingNumber : undefined;
this.accountType = cfg.accountType ? cfg.accountType : AccountTypes.Checking;
this.accountOwnerType = cfg.accountOwnerType
? cfg.accountOwnerType
: AccountOwnerTypes.Personal;
this.permissions = cfg.permissions
? cfg.permissions.map((p) => new Permission(p))
: new Array<Permission>();
this.requireMfaOnPaymentCreation = cfg.requireMfaOnPaymentCreation;
this.fee = cfg.fee;
}
get canCredit(): boolean {
return this.permissions.filter((p) => p.canCredit).length > 0;
}
get canDebit(): boolean {
return this.permissions.filter((p) => p.canDebit).length > 0;
}
get needsVerified(): boolean {
return this.isMicroDepositVerificationPending;
}
}