interface ILockInfo {
    comment?: string;
    creationTimestampUtc?: Date;
    entryId?: number;
    extent?: string;
    isActive?: boolean;
    lockToken?: string;
    owner?: string;
}

Implemented by

Properties

comment?: string

The user-defined comment for the lock.

creationTimestampUtc?: Date

The UTC timestamp when the lock was created.

entryId?: number

The entry ID of the locked document.

extent?: string

The lock extent (e.g., "Page", "Edoc", "Metadata", "All").

isActive?: boolean

Whether the lock is currently active.

lockToken?: string

The unique lock token.

owner?: string

The account name of the lock owner (e.g., "DOMAIN\user").