LoginResult

Upon a successful call to the Login method of the SessionKit, the response returned will be an object that matches the LoginResult interface.

Properties

The LoginResult object contains the following properties:

interface LoginResult {
  context: LoginContext
  response: WalletPluginLoginResponse
  session: Session
}

context

The LoginContext instance that was used by both the SessionKit and LoginPlugins during the Login process.

response

The response data from the WalletPlugin used during the Login process.

session

The Session created by the SessionKit, based on the end user’s choices during the Login process.