DeviceBoundSessionCookieCraving

@Serializable
data class DeviceBoundSessionCookieCraving(val name: String, val domain: String, val path: String, val secure: Boolean, val httpOnly: Boolean, val sameSite: Network.CookieSameSite? = null)

A device bound session's cookie craving.

Constructors

Link copied to clipboard
constructor(name: String, domain: String, path: String, secure: Boolean, httpOnly: Boolean, sameSite: Network.CookieSameSite? = null)

Properties

Link copied to clipboard

The domain of the craving.

Link copied to clipboard

The HttpOnly attribute of the craving attributes.

Link copied to clipboard

The name of the craving.

Link copied to clipboard

The path of the craving.

Link copied to clipboard

The SameSite attribute of the craving attributes.

Link copied to clipboard

The Secure attribute of the craving attributes.