File

src/app/models/i-jwt.ts

Index

Properties

Properties

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
family_name
family_name: string
Type : string
given_name
given_name: string
Type : string
hasGoogleAuth
hasGoogleAuth: boolean
Type : boolean
iat
iat: string
Type : string
iss
iss: string
Type : string
mfaEmail
mfaEmail: string
Type : string
mfaType
mfaType: string
Type : string
name
name: string
Type : string
phones
phones: Phone[]
Type : Phone[]
roles
roles: string[]
Type : string[]
secretType
secretType: string
Type : string
sso
sso: boolean
Type : boolean
sub
sub: string
Type : string
userId
userId: string
Type : string
version
version: string
Type : string
import { BankAccount } from './bank-account';
import { Phone } from './phone';

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;
  mfaEmail: string;
  mfaType: string;
  secretType: string;
  roles: string[];
  exp: number;
  aud: string;
  bankAccounts: BankAccount[];
  phones: Phone[];
  version: string;
}

result-matching ""

    No results matching ""