Skip to main content

ITokenResponse Interface

Signature

export interface ITokenResponse

Properties

PropertyModifiersTypeDescription
fromCacheoptionalbooleanA flag indicating whether token was obtained from local cache.
jwtstringJSON Web Token (JWT) value.

Property Details

fromCache

A flag indicating whether token was obtained from local cache.

Signature

fromCache?: boolean;

Type: boolean

Remarks

undefined indicates that the source of the token could not be determined.

jwt

JSON Web Token (JWT) value.

Signature

jwt: string;

Type: string