interface VersionMoveBean {
    after?: string;
    position?:
        | "First"
        | "Last"
        | "Earlier"
        | "Later";
}

Properties

Properties

after?: string

The URL (self link) of the version after which to place the moved version. Cannot be used with position.

position?:
    | "First"
    | "Last"
    | "Earlier"
    | "Later"

An absolute position in which to place the moved version. Cannot be used with after.