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

GuestAttributesEntry

import type { GuestAttributesEntry } from "https://googleapis.deno.dev/v1/tpu:v2.ts";

A guest attributes namespace/key/value entry.

interface GuestAttributesEntry {
key?: string;
namespace?: string;
value?: string;
}

§Properties

§
key?: string
[src]

Key for the guest attribute entry.

§
namespace?: string
[src]

Namespace for the guest attribute entry.

§
value?: string
[src]

Value for the guest attribute entry.