src/app/models/i-user.model.ts
accounts |
accounts:
|
Type : BankAccount[]
|
address |
address:
|
Type : Address
|
currentTheme |
currentTheme:
|
Type : string
|
customerId |
customerId:
|
Type : string
|
defaultFlexPayView |
defaultFlexPayView:
|
Type : string
|
domain |
domain:
|
Type : string
|
emailAddress |
emailAddress:
|
Type : string
|
financialInstitutionId |
financialInstitutionId:
|
Type : string
|
firstName |
firstName:
|
Type : string
|
foreignKey |
foreignKey:
|
Type : string
|
gPinKey |
gPinKey:
|
Type : string
|
hasAcceptedDisclaimer |
hasAcceptedDisclaimer:
|
Type : boolean
|
hasGoogleAuth |
hasGoogleAuth:
|
Type : boolean
|
id |
id:
|
Type : string
|
isEnrolled |
isEnrolled:
|
Type : boolean
|
isForcePasswordChange |
isForcePasswordChange:
|
Type : boolean
|
isPasswordExpired |
isPasswordExpired:
|
Type : boolean
|
isPictureTipsHidden |
isPictureTipsHidden:
|
Type : boolean
|
lastName |
lastName:
|
Type : string
|
links |
links:
|
Type : string[]
|
password |
password:
|
Type : string
|
phoneNumbers |
phoneNumbers:
|
Type : string[]
|
pinEnabled |
pinEnabled:
|
Type : boolean
|
roles |
roles:
|
Type : string[]
|
userName |
userName:
|
Type : string
|
import { Address } from './address.model';
import { BankAccount } from './bank-account.model';
export interface IUser {
currentTheme: string;
customerId: string;
defaultFlexPayView: string;
domain: string;
emailAddress: string;
financialInstitutionId: string;
firstName: string;
foreignKey: string;
gPinKey: string;
hasAcceptedDisclaimer: boolean;
hasGoogleAuth: boolean;
id: string;
isEnrolled: boolean;
isForcePasswordChange: boolean;
isPasswordExpired: boolean;
isPictureTipsHidden: boolean;
lastName: string;
links: string[];
password: string;
phoneNumbers: string[];
pinEnabled: boolean;
roles: string[];
userName: string;
address: Address;
accounts: BankAccount[];
}