Network.Response
HTTP response data.
{
"id": "Response",
"type": "object",
"description": "HTTP response data.",
"properties": [
{
"name": "url",
"type": "string",
"description": "Response URL. This URL can be different from CachedResource.url in case of redirect."
},
{
"name": "status",
"type": "number",
"description": "HTTP response status code."
},
{
"name": "statusText",
"type": "string",
"description": "HTTP response status text."
},
{
"name": "headers",
"$ref": "Headers",
"description": "HTTP response headers."
},
{
"name": "headersText",
"type": "string",
"optional": true,
"description": "HTTP response headers text."
},
{
"name": "mimeType",
"type": "string",
"description": "Resource mimeType as determined by the browser."
},
{
"name": "requestHeaders",
"$ref": "Headers",
"optional": true,
"description": "Refined HTTP request headers that were actually transmitted over the network."
},
{
"name": "requestHeadersText",
"type": "string",
"optional": true,
"description": "HTTP request headers text."
},
{
"name": "fromDiskCache",
"type": "boolean",
"optional": true,
"description": "Specifies that the request was served from the disk cache."
},
{
"name": "timing",
"$ref": "ResourceTiming",
"optional": true,
"description": "Timing information for the given request."
}
]
}