GoogleAppsDriveLabelsV2LabelLock
import type { GoogleAppsDriveLabelsV2LabelLock } from "https://googleapis.deno.dev/v1/drivelabels:v2.ts";
A lock that can be applied to a label, field, or choice.
interface GoogleAppsDriveLabelsV2LabelLock {
readonly capabilities?: GoogleAppsDriveLabelsV2LabelLockCapabilities;
choiceId?: string;
readonly createTime?: Date;
readonly creator?: GoogleAppsDriveLabelsV2UserInfo;
readonly deleteTime?: Date;
fieldId?: string;
readonly name?: string;
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "DELETING";
}§Properties
§
readonly capabilities?: GoogleAppsDriveLabelsV2LabelLockCapabilities
[src]Output only. The user's capabilities on this label lock.
§
choiceId?: string
[src]The ID of the selection field choice that should be locked. If present,
field_id
must also be present.
§
readonly creator?: GoogleAppsDriveLabelsV2UserInfo
[src]Output only. The user whose credentials were used to create the label lock. Not present if no user was responsible for creating the label lock.
§
readonly deleteTime?: Date
[src]Output only. A timestamp indicating when this label lock was scheduled for
deletion. Present only if this label lock is in the DELETING
state.