File

src/app/models/session.model.ts

Index

Properties

Constructor

constructor(jwt?: IJwt, accounts?: BankAccount[], phones?: Phone[], urls?: IExportUrls)
Parameters :
Name Type Optional
jwt IJwt Yes
accounts BankAccount[] Yes
phones Phone[] Yes
urls IExportUrls Yes

Properties

accounts
Type : BankAccount[]
accountVerificationTypes
Type : string[]
allowsEmailMfa
Type : boolean
customerId
Type : string
domain
Type : string
email
Type : string
exportUrls
Type : IExportUrls
firstName
Type : string
hasGoogleAuth
Type : boolean
hideMaskedAccount
Type : boolean
lastName
Type : string
limits
Type : Limits
mfaType
Type : string
name
Type : string
phones
Type : Phone[]
plaidEnvironment
Type : string
secretType
Type : string
sso
Type : boolean
styleUrl
Type : string
userId
Type : string
version
Type : string
import { BankAccount } from './bank-account.model';
import { IExportUrls } from './i-export-urls.model';
import { IJwt } from './i-jwt.model';
import { Limits } from './limits.model';
import { Phone } from './phone.model';

const DEFAULT_PLAID_ENVIRONMENT = 'DEVELOPMENT';
export class Session {
  constructor(jwt?: IJwt, accounts?: BankAccount[], phones?: Phone[], urls?: IExportUrls) {
    if (!jwt) {
      return;
    }
    this.lastName = jwt.family_name;
    this.firstName = jwt.given_name;
    this.name = `${jwt.given_name} ${jwt.family_name}`;
    this.domain = jwt.domain;
    this.email = jwt.mfaEmail;
    this.sso = jwt.sso;
    this.userId = jwt.userId;
    this.customerId = jwt.customerId;
    this.hasGoogleAuth = jwt.hasGoogleAuth;
    this.mfaType = jwt.mfaType;
    this.allowsEmailMfa = jwt.allowsEmailMfa;
    this.secretType = jwt.secretType;
    this.styleUrl = jwt.styleUrl;
    this.hideMaskedAccount = jwt.hideMaskedAccount;
    this.phones = phones;
    this.accounts = accounts;
    this.limits = jwt.limits;
    this.exportUrls = urls;
    this.version = jwt.version;
    this.accountVerificationTypes = jwt.accountVerificationTypes;
    this.plaidEnvironment = jwt.plaidEnvironment
      ? jwt.plaidEnvironment
      : DEFAULT_PLAID_ENVIRONMENT;
  }
  firstName: string;
  lastName: string;
  name: string;
  email: string;
  domain: string;
  sso: boolean;
  allowsEmailMfa: boolean;
  userId: string;
  customerId: string;
  hasGoogleAuth: boolean;
  mfaType: string;
  secretType: string;
  styleUrl: string;
  hideMaskedAccount: boolean;
  accounts: BankAccount[];
  phones: Phone[];
  limits: Limits;
  exportUrls: IExportUrls;
  version: string;
  plaidEnvironment: string;
  accountVerificationTypes: string[];
}

results matching ""

    No results matching ""