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

SystemParameter

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

Define a parameter's name and location. The parameter may be passed as either an HTTP header or a URL query parameter, and if both are passed the behavior is implementation-dependent.

interface SystemParameter {
httpHeader?: string;
name?: string;
urlQueryParameter?: string;
}

§Properties

§
httpHeader?: string
[src]

Define the HTTP header name to use for the parameter. It is case insensitive.

§
name?: string
[src]

Define the name of the parameter, such as "api_key" . It is case sensitive.

§
urlQueryParameter?: string
[src]

Define the URL query parameter name to use for the parameter. It is case sensitive.