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

ClientInfoDetail

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

Key-value pair of detailed information about the client which invoked the test. Examples: {'Version', '1.0'}, {'Release Track', 'BETA'}.

interface ClientInfoDetail {
key?: string;
value?: string;
}

§Properties

§
key?: string
[src]

Required. The key of detailed client information.

§
value?: string
[src]

Required. The value of detailed client information.