WaitingRoomCookieAttributes

data class WaitingRoomCookieAttributes(val samesite: String? = null, val secure: String? = null)

Constructors

Link copied to clipboard
constructor(samesite: String? = null, secure: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val samesite: String? = null

Configures the SameSite attribute on the waiting room cookie. Value auto will be translated to lax or none depending if Always Use HTTPS is enabled. Note that when using value none, the secure attribute cannot be set to never. Available values: "auto", "lax", "none", "strict".

Link copied to clipboard
val secure: String? = null

Configures the Secure attribute on the waiting room cookie. Value always indicates that the Secure attribute will be set in the Set-Cookie header, never indicates that the Secure attribute will not be set, and auto will set the Secure attribute depending if Always Use HTTPS is enabled. Available values: "auto", "always", "never".