[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [BlockedCookieWithReason](./puppeteer.protocol.network.blockedcookiewithreason.md) ## Protocol.Network.BlockedCookieWithReason interface A cookie with was not sent with a request with the corresponding reason. Signature: ```typescript export interface BlockedCookieWithReason ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [blockedReasons](./puppeteer.protocol.network.blockedcookiewithreason.blockedreasons.md) | [CookieBlockedReason](./puppeteer.protocol.network.cookieblockedreason.md)\[\] | The reason(s) the cookie was blocked. | | [cookie](./puppeteer.protocol.network.blockedcookiewithreason.cookie.md) | [Cookie](./puppeteer.protocol.network.cookie.md) | The cookie object representing the cookie which was not sent. |