File

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

Index

Properties

Properties

accountVerificationTypes
accountVerificationTypes: string[]
Type : string[]
allowsEmailMfa
allowsEmailMfa: boolean
Type : boolean
aud
aud: string
Type : string
bankAccounts
bankAccounts: BankAccount[]
Type : BankAccount[]
customerId
customerId: string
Type : string
domain
domain: string
Type : string
exp
exp: number
Type : number
exportUrls
exportUrls: IExportUrls
Type : IExportUrls
family_name
family_name: string
Type : string
given_name
given_name: string
Type : string
hasGoogleAuth
hasGoogleAuth: boolean
Type : boolean
hideMaskedAccount
hideMaskedAccount: boolean
Type : boolean
iat
iat: string
Type : string
iss
iss: string
Type : string
limits
limits: Limits
Type : Limits
mfaEmail
mfaEmail: string
Type : string
mfaType
mfaType: string
Type : string
name
name: string
Type : string
phones
phones: Phone[]
Type : Phone[]
plaidEnvironment
plaidEnvironment: string
Type : string
roles
roles: string[]
Type : string[]
secretType
secretType: string
Type : string
sso
sso: boolean
Type : boolean
styleUrl
styleUrl: string
Type : string
sub
sub: string
Type : string
userId
userId: string
Type : string
version
version: string
Type : string
import { Phone } from '.';
import { BankAccount } from './bank-account.model';
import { IExportUrls } from './i-export-urls.model';
import { Limits } from './limits.model';

export interface IJwt {
  iss: string;
  sub: string;
  iat: string;
  family_name: string;
  given_name: string;
  name: string;
  domain: string;
  sso: boolean;
  userId: string;
  customerId: string;
  hasGoogleAuth: boolean;
  allowsEmailMfa: boolean;
  mfaEmail: string;
  mfaType: string;
  secretType: string;
  styleUrl: string;
  hideMaskedAccount: boolean;
  roles: string[];
  exp: number;
  aud: string;
  bankAccounts: BankAccount[];
  phones: Phone[];
  limits: Limits;
  exportUrls: IExportUrls;
  plaidEnvironment: string;
  version: string;
  accountVerificationTypes: string[];
}

results matching ""

    No results matching ""