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