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

GoogleCloudDialogflowCxV3Version

import type { GoogleCloudDialogflowCxV3Version } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Represents a version of a flow.

interface GoogleCloudDialogflowCxV3Version {
readonly createTime?: Date;
description?: string;
displayName?: string;
name?: string;
readonly nluSettings?: GoogleCloudDialogflowCxV3NluSettings;
readonly state?:
| "STATE_UNSPECIFIED"
| "RUNNING"
| "SUCCEEDED"
| "FAILED";
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Create time of the version.

§
description?: string
[src]

The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.

§
displayName?: string
[src]

Required. The human-readable name of the version. Limit of 64 characters.

§
name?: string
[src]

Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.

§

Output only. The NLU settings of the flow at version creation.

§
readonly state?: "STATE_UNSPECIFIED" | "RUNNING" | "SUCCEEDED" | "FAILED"
[src]

Output only. The state of this version. This field is read-only and cannot be set by create and update methods.