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

GoogleCloudDatacatalogV1RoutineSpecArgument

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

Input or output argument of a function or stored procedure.

interface GoogleCloudDatacatalogV1RoutineSpecArgument {
mode?:
| "MODE_UNSPECIFIED"
| "IN"
| "OUT"
| "INOUT";
name?: string;
type?: string;
}

§Properties

§
mode?: "MODE_UNSPECIFIED" | "IN" | "OUT" | "INOUT"
[src]

Specifies whether the argument is input or output.

§
name?: string
[src]

The name of the argument. A return argument of a function might not have a name.

§
type?: string
[src]

Type of the argument. The exact value depends on the source system and the language.