interface Session {
    clientId?: string;
    creationTime?: number;
    expirationTime?: number;
    id?: number;
    status?: SessionStatus;
    type?: SessionType;
}

Properties

clientId?: string

Client ID in identity provider. Returned only if the session was created using client credentials

creationTime?: number

Session creation time, in milliseconds since 1970

expirationTime?: number

Session expiry time, in milliseconds since 1970. This value is updated on refreshing a token

id?: number

ID of the session

status?: SessionStatus

Current status of the session

Values reserved for future use