[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Fetch](./puppeteer.protocol.fetch.md) > [FulfillRequestRequest](./puppeteer.protocol.fetch.fulfillrequestrequest.md) ## Protocol.Fetch.FulfillRequestRequest interface Signature: ```typescript export interface FulfillRequestRequest ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [binaryResponseHeaders](./puppeteer.protocol.fetch.fulfillrequestrequest.binaryresponseheaders.md) | string | Alternative way of specifying response headers as a \\0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text. | | [body](./puppeteer.protocol.fetch.fulfillrequestrequest.body.md) | string | A response body. | | [requestId](./puppeteer.protocol.fetch.fulfillrequestrequest.requestid.md) | [RequestId](./puppeteer.protocol.fetch.requestid.md) | An id the client received in requestPaused event. | | [responseCode](./puppeteer.protocol.fetch.fulfillrequestrequest.responsecode.md) | [integer](./puppeteer.protocol.integer.md) | An HTTP response code. | | [responseHeaders](./puppeteer.protocol.fetch.fulfillrequestrequest.responseheaders.md) | [HeaderEntry](./puppeteer.protocol.fetch.headerentry.md)\[\] | Response headers. | | [responsePhrase](./puppeteer.protocol.fetch.fulfillrequestrequest.responsephrase.md) | string | A textual representation of responseCode. If absent, a standard phrase matching responseCode is used. |