interface ITokenResponsePayload {
    accessToken: string;
    endpoint?: string;
    idToken: string;
    trustChain: TrustChain;
}

Hierarchy

  • ILoggerPayload
    • ITokenResponsePayload

Properties

accessToken: string

Access token provided by the IDP

endpoint?: string

URL to which the request was sent

idToken: string

ID token provided by the IDP

trustChain: TrustChain