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

Action

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

Action message contains metadata information about a single action present in the external system.

interface Action {
description?: string;
displayName?: string;
inputJsonSchema?: JsonSchema;
inputParameters?: InputParameter[];
name?: string;
resultJsonSchema?: JsonSchema;
resultMetadata?: ResultMetadata[];
}

§Properties

§
description?: string
[src]

Brief Description of action

§
displayName?: string
[src]

Display Name of action to be shown on client side

§
inputJsonSchema?: JsonSchema
[src]

JsonSchema representation of this actions's input schema

§
inputParameters?: InputParameter[]
[src]

List containing input parameter metadata.

§
name?: string
[src]

Name of the action.

§
resultJsonSchema?: JsonSchema
[src]

JsonSchema representation of this actions's result schema

§
resultMetadata?: ResultMetadata[]
[src]

List containing the metadata of result fields.