src/app/models/i-jwt.ts
Properties |
aud |
aud:
|
Type : string
|
bankAccounts |
bankAccounts:
|
Type : BankAccount[]
|
customerId |
customerId:
|
Type : string
|
domain |
domain:
|
Type : string
|
exp |
exp:
|
Type : number
|
family_name |
family_name:
|
Type : string
|
given_name |
given_name:
|
Type : string
|
hasGoogleAuth |
hasGoogleAuth:
|
Type : boolean
|
iat |
iat:
|
Type : string
|
iss |
iss:
|
Type : string
|
mfaEmail |
mfaEmail:
|
Type : string
|
mfaType |
mfaType:
|
Type : string
|
name |
name:
|
Type : string
|
phones |
phones:
|
Type : Phone[]
|
roles |
roles:
|
Type : string[]
|
secretType |
secretType:
|
Type : string
|
sso |
sso:
|
Type : boolean
|
sub |
sub:
|
Type : string
|
userId |
userId:
|
Type : string
|
version |
version:
|
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;
}