AssociatedCookie

@Serializable
data class AssociatedCookie(val cookie: Network.Cookie, val blockedReasons: List<Network.CookieBlockedReason>, val exemptionReason: Network.CookieExemptionReason? = null)

A cookie associated with the request which may or may not be sent with it. Includes the cookies itself and reasons for blocking or exemption.

Constructors

Link copied to clipboard
constructor(cookie: Network.Cookie, blockedReasons: List<Network.CookieBlockedReason>, exemptionReason: Network.CookieExemptionReason? = null)

Properties

Link copied to clipboard

The reason(s) the cookie was blocked. If empty means the cookie is included.

Link copied to clipboard

The cookie object representing the cookie which was not sent.

Link copied to clipboard

The reason the cookie should have been blocked by 3PCD but is exempted. A cookie could only have at most one exemption reason.