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

StructType

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

StructType defines the fields of a STRUCT type.

interface StructType {
fields?: Field[];
}

§Properties

§
fields?: Field[]
[src]

The list of fields that make up this struct. Order is significant, because values of this struct type are represented as lists, where the order of field values matches the order of fields in the StructType. In turn, the order of fields matches the order of columns in a read request, or the order of fields in the SELECT clause of a query.