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

AppVersion

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

In Customer Engagement Suite (CES), an app version is a snapshot of the app at a specific point in time. It is immutable and cannot be modified once created.

interface AppVersion {
readonly createTime?: Date;
readonly creator?: string;
description?: string;
displayName?: string;
readonly etag?: string;
name?: string;
readonly snapshot?: AppSnapshot;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when the app version was created.

§
readonly creator?: string
[src]

Output only. Email of the user who created the app version.

§
description?: string
[src]

Optional. The description of the app version.

§
displayName?: string
[src]

Optional. The display name of the app version.

§
readonly etag?: string
[src]

Output only. Etag used to ensure the object hasn't changed during a read-modify-write operation. If the etag is empty, the update will overwrite any concurrent changes.

§
name?: string
[src]

Identifier. The unique identifier of the app version. Format: projects/{project}/locations/{location}/apps/{app}/versions/{version}

§
readonly snapshot?: AppSnapshot
[src]

Output only. The snapshot of the app when the version is created.