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

NameValuePair

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

A name-value pair representing an attribute entry usable in a list of attributes.

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

§Properties

§
key?: string
[src]

Required. The name of the property entry.

§
value?: string
[src]

Required. The value of the property entry.