src/app/models/customer.model.ts
| accounts |
accounts:
|
Type : BankAccount[]
|
|
Defined in src/app/models/customer.model.ts:27
|
| address |
address:
|
Type : Address
|
|
Defined in src/app/models/customer.model.ts:5
|
| bankUserId |
bankUserId:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:6
|
| companyName |
companyName:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:29
|
| createBy |
createBy:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:7
|
| createOn |
createOn:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:8
|
| currentTheme |
currentTheme:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:10
|
| dailyLimit |
dailyLimit:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:9
|
email:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:11
|
| firstName |
firstName:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:12
|
| fullName |
fullName:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:13
|
| id |
id:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:4
|
| isActive |
isActive:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:14
|
| lastName |
lastName:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:15
|
| lastPasswordChange |
lastPasswordChange:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:16
|
| links |
links:
|
Type : Link[]
|
|
Defined in src/app/models/customer.model.ts:33
|
| logIn |
logIn:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:17
|
| modifyBy |
modifyBy:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:18
|
| modifyOn |
modifyOn:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:19
|
| nextPaperCheckNumber |
nextPaperCheckNumber:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:28
|
| notifyOfPaymentsSent |
notifyOfPaymentsSent:
|
Type : boolean
|
|
Defined in src/app/models/customer.model.ts:26
|
| notifyWhenPayeeCreated |
notifyWhenPayeeCreated:
|
Type : boolean
|
|
Defined in src/app/models/customer.model.ts:23
|
| notifyWhenPaymentOverAmount |
notifyWhenPaymentOverAmount:
|
Type : boolean
|
|
Defined in src/app/models/customer.model.ts:24
|
| notifyWhenPaymentOverAmountValue |
notifyWhenPaymentOverAmountValue:
|
Type : number
|
|
Defined in src/app/models/customer.model.ts:25
|
| phone |
phone:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:21
|
| shardKey |
shardKey:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:22
|
| showPreferencesOnLogin |
showPreferencesOnLogin:
|
Type : boolean
|
|
Defined in src/app/models/customer.model.ts:32
|
| transactionLimit |
transactionLimit:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:20
|
| verifyLimit |
verifyLimit:
|
Type : string
|
|
Defined in src/app/models/customer.model.ts:31
|
| version |
version:
|
Type : number
|
|
Defined in src/app/models/customer.model.ts:30
|
import { BankAccount, Link, Address } from './';
export class Customer {
id: string;
address: Address;
bankUserId: string;
createBy: string;
createOn: string;
dailyLimit: string;
currentTheme: string;
email: string;
firstName: string;
fullName: string;
isActive: string;
lastName: string;
lastPasswordChange: string;
logIn: string;
modifyBy: string;
modifyOn: string;
transactionLimit: string;
phone: string;
shardKey: string;
notifyWhenPayeeCreated: boolean;
notifyWhenPaymentOverAmount: boolean;
notifyWhenPaymentOverAmountValue: number;
notifyOfPaymentsSent: boolean;
accounts: BankAccount[];
nextPaperCheckNumber: string;
companyName: string;
version: number;
verifyLimit: string;
showPreferencesOnLogin: boolean;
links: Link[];
}