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

AppliedLabelChangeDetail

import type { AppliedLabelChangeDetail } from "https://googleapis.deno.dev/v1/driveactivity:v2.ts";

A change made to a Label on the Target.

interface AppliedLabelChangeDetail {
fieldChanges?: FieldValueChange[];
label?: string;
title?: string;
types?:
| "TYPE_UNSPECIFIED"
| "LABEL_ADDED"
| "LABEL_REMOVED"
| "LABEL_FIELD_VALUE_CHANGED"
| "LABEL_APPLIED_BY_ITEM_CREATE"[];
}

§Properties

§
fieldChanges?: FieldValueChange[]
[src]

Field Changes. Only present if types contains LABEL_FIELD_VALUE_CHANGED.

§
label?: string
[src]

The Label name representing the Label that changed. This name always contains the revision of the Label that was used when this Action occurred. The format is labels/id@revision.

§
title?: string
[src]

The human-readable title of the label that changed.

§
types?: "TYPE_UNSPECIFIED" | "LABEL_ADDED" | "LABEL_REMOVED" | "LABEL_FIELD_VALUE_CHANGED" | "LABEL_APPLIED_BY_ITEM_CREATE"[]
[src]

The types of changes made to the Label on the Target.