File

src/app/models/i-user.model.ts

Index

Properties

Properties

accounts
accounts: BankAccount[]
Type : BankAccount[]
address
address: Address
Type : Address
currentTheme
currentTheme: string
Type : string
customerId
customerId: string
Type : string
defaultFlexPayView
defaultFlexPayView: string
Type : string
domain
domain: string
Type : string
emailAddress
emailAddress: string
Type : string
financialInstitutionId
financialInstitutionId: string
Type : string
firstName
firstName: string
Type : string
foreignKey
foreignKey: string
Type : string
gPinKey
gPinKey: string
Type : string
hasAcceptedDisclaimer
hasAcceptedDisclaimer: boolean
Type : boolean
hasGoogleAuth
hasGoogleAuth: boolean
Type : boolean
id
id: string
Type : string
isEnrolled
isEnrolled: boolean
Type : boolean
isForcePasswordChange
isForcePasswordChange: boolean
Type : boolean
isPasswordExpired
isPasswordExpired: boolean
Type : boolean
isPictureTipsHidden
isPictureTipsHidden: boolean
Type : boolean
lastName
lastName: string
Type : string
links
links: string[]
Type : string[]
password
password: string
Type : string
phoneNumbers
phoneNumbers: string[]
Type : string[]
pinEnabled
pinEnabled: boolean
Type : boolean
roles
roles: string[]
Type : string[]
userName
userName: string
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[];
}

results matching ""

    No results matching ""