Interface IDPData

Represents the identity provider data.

interface IDPData {
    activeIdentity?: Authorization;
    identities?: Authorization[];
    user: User;
}

Properties

activeIdentity?: Authorization

The active authorization for the current session.

identities?: Authorization[]

An optional array of past or other possible authorizations that the user may have.

user: User

The user who is being authorized.