Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryResponse

import type { QueryResponse } from "https://googleapis.deno.dev/v1/chromeuxreport:v1.ts";

Response payload sent back to a physical web client. This response contains the record found based on the identiers present in a QueryRequest. The returned response will have a record, and sometimes details on normalization actions taken on the request that were necessary to make the request successful.

interface QueryResponse {
record?: Record;
urlNormalizationDetails?: UrlNormalization;
}

§Properties

§
record?: Record
[src]

The record that was found.

§
urlNormalizationDetails?: UrlNormalization
[src]

These are details about automated normalization actions that were taken in order to make the requested url_pattern valid.