[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [CachedResource](./puppeteer.protocol.network.cachedresource.md) ## Protocol.Network.CachedResource interface Information about the cached resource. Signature: ```typescript export interface CachedResource ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [bodySize](./puppeteer.protocol.network.cachedresource.bodysize.md) | number | Cached response body size. | | [response](./puppeteer.protocol.network.cachedresource.response.md) | [Response](./puppeteer.protocol.network.response.md) | Cached response data. | | [type](./puppeteer.protocol.network.cachedresource.type.md) | [ResourceType](./puppeteer.protocol.network.resourcetype.md) | Type of this resource. | | [url](./puppeteer.protocol.network.cachedresource.url.md) | string | Resource URL. This is the url of the original network request. |