OAuthResult

@Serializable
data class OAuthResult(val signIn: SignIn? = null, val signUp: SignUp? = null)

The result of an SSO operation.

Constructors

Link copied to clipboard
constructor(signIn: SignIn? = null, signUp: SignUp? = null)

Properties

Link copied to clipboard

Convenience property to determine the type of result.

Link copied to clipboard
val signIn: SignIn? = null

The sign-in object if the SSO operation resulted in a sign-in.

Link copied to clipboard
val signUp: SignUp? = null

The sign-up object if the SSO operation resulted in a sign-up.