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 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.