EnterpriseSSO

@Serializable
data class EnterpriseSSO(val strategy: String = AuthStrategy.ENTERPRISE_SSO, val redirectUrl: String = RedirectConfiguration.DEFAULT_REDIRECT_URL, val legalAccepted: Boolean? = null, val emailAddress: String? = null, val identifier: String? = null) : SignUp.AuthenticateWithRedirectParams

Enterprise SSO params for redirect authentication.

Constructors

Link copied to clipboard
constructor(strategy: String = AuthStrategy.ENTERPRISE_SSO, redirectUrl: String = RedirectConfiguration.DEFAULT_REDIRECT_URL, legalAccepted: Boolean? = null, emailAddress: String? = null, identifier: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "email_address")
open override val emailAddress: String? = null

The user's email address for pre-filling authentication forms.

Link copied to clipboard
open override val identifier: String? = null

The user's identifier for authentication.

Link copied to clipboard
@SerialName(value = "legal_accepted")
open override val legalAccepted: Boolean? = null

Whether the user has accepted the legal terms.

Link copied to clipboard
@SerialName(value = "redirect_url")
open override val redirectUrl: String

The URL to redirect to after authentication.

Link copied to clipboard

The Enterprise SSO strategy identifier.