interface IAuthorizationResponsePayload {
    code: string;
    endpoint?: string;
    trustChain: TrustChain;
}

Hierarchy

  • ILoggerPayload
    • IAuthorizationResponsePayload

Properties

code: string

The authorization token provided by the IDP

endpoint?: string

URL to which the request was sent

trustChain: TrustChain