File

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

Index

Properties

Properties

allowsEmailMfa
allowsEmailMfa: boolean
Type : boolean
aud
aud: string
Type : string
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
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 { 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;
  exportUrls: IExportUrls;
  limits: Limits;
  version: string;
}

results matching ""

    No results matching ""