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

Group

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

A resource that represents an asset group. The purpose of an asset group is to bundle a set of assets that have something in common, while allowing users to add annotations to the group. An asset can belong to multiple groups.

interface Group {
readonly createTime?: Date;
description?: string;
displayName?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The timestamp when the group was created.

§
description?: string
[src]

Optional. The description of the group.

§
displayName?: string
[src]

Optional. User-friendly display name.

§
labels?: {
[key: string]: string;
}
[src]

Labels as key value pairs.

§
readonly name?: string
[src]

Output only. The name of the group.

§
readonly updateTime?: Date
[src]

Output only. The timestamp when the group was last updated.