Interface DeputyPageStatusRequestMessage

Requests the status of a given page. Used prior to showing the page toolbar. If no response is received, the page is not part of an active CCI session and therefore will not be worked on.

An optional revision parameter requests information for a specific revision. If checked, the returning DeputyPageStatusResponseMessage will also provide information on whether the revision is marked as assessed or not.

interface DeputyPageStatusRequestMessage {
    page: string;
    revision?: number;
    type: "pageStatusRequest";
}

Properties

Properties

page: string
revision?: number
type: "pageStatusRequest"