ExemptedSetCookieWithReason

@Serializable
data class ExemptedSetCookieWithReason(val exemptionReason: Network.CookieExemptionReason, val cookieLine: String, val cookie: Network.Cookie)

A cookie should have been blocked by 3PCD but is exempted and stored from a response with the corresponding reason. A cookie could only have at most one exemption reason.

Constructors

Link copied to clipboard
constructor(exemptionReason: Network.CookieExemptionReason, cookieLine: String, cookie: Network.Cookie)

Properties

Link copied to clipboard

The cookie object representing the cookie.

Link copied to clipboard

The string representing this individual cookie as it would appear in the header.

Link copied to clipboard

The reason the cookie was exempted.