src/app/models/i-jwt.model.ts
Properties |
allowsEmailMfa |
allowsEmailMfa:
|
Type : boolean
|
Defined in src/app/models/i-jwt.model.ts:16
|
aud |
aud:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:24
|
customerId |
customerId:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:14
|
domain |
domain:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:11
|
exp |
exp:
|
Type : number
|
Defined in src/app/models/i-jwt.model.ts:23
|
exportUrls |
exportUrls:
|
Type : IExportUrls
|
Defined in src/app/models/i-jwt.model.ts:25
|
family_name |
family_name:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:8
|
given_name |
given_name:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:9
|
hasGoogleAuth |
hasGoogleAuth:
|
Type : boolean
|
Defined in src/app/models/i-jwt.model.ts:15
|
hideMaskedAccount |
hideMaskedAccount:
|
Type : boolean
|
Defined in src/app/models/i-jwt.model.ts:21
|
iat |
iat:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:7
|
iss |
iss:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:5
|
limits |
limits:
|
Type : Limits
|
Defined in src/app/models/i-jwt.model.ts:26
|
mfaEmail |
mfaEmail:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:17
|
mfaType |
mfaType:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:18
|
name |
name:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:10
|
roles |
roles:
|
Type : string[]
|
Defined in src/app/models/i-jwt.model.ts:22
|
secretType |
secretType:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:19
|
sso |
sso:
|
Type : boolean
|
Defined in src/app/models/i-jwt.model.ts:12
|
styleUrl |
styleUrl:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:20
|
sub |
sub:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:6
|
userId |
userId:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:13
|
version |
version:
|
Type : string
|
Defined in src/app/models/i-jwt.model.ts:27
|
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;
}