Request body for checking out a document.

interface ICheckOutDocumentRequest {
    comment?: string;
    lock?: boolean;
}

Implemented by

Properties

Properties

comment?: string

An optional comment for the check-out.

lock?: boolean

Whether to automatically acquire a persistent lock as part of the check-out. Defaults to true.