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

Version

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

A resource representing a script project version. A version is a "snapshot" of a script project and is similar to a read-only branched release. When creating deployments, the version to use must be specified.

interface Version {
createTime?: Date;
description?: string;
scriptId?: string;
versionNumber?: number;
}

§Properties

§
createTime?: Date
[src]

When the version was created.

§
description?: string
[src]

The description for this version.

§
scriptId?: string
[src]

The script project's Drive ID.

§
versionNumber?: number
[src]

The incremental ID that is created by Apps Script when a version is created. This is system assigned number and is immutable once created.