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

FieldValueChange

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

Change to a Field value.

interface FieldValueChange {
displayName?: string;
fieldId?: string;
newValue?: FieldValue;
oldValue?: FieldValue;
}

§Properties

§
displayName?: string
[src]

The human-readable display name for this field.

§
fieldId?: string
[src]

The ID of this field. Field IDs are unique within a Label.

§
newValue?: FieldValue
[src]

The value that is now set on the field. If not present, the field was cleared. At least one of {old_value|new_value} is always set.

§
oldValue?: FieldValue
[src]

The value that was previously set on the field. If not present, the field was newly set. At least one of {old_value|new_value} is always set.