interface OrderEditUpdate {
    actions: OrderEditUpdateAction[];
    dryRun?: boolean;
    version: number;
}

Properties

Update actions to be performed on the Order Edit.

dryRun?: boolean

If set to true, the Order Edit is applied on the Order without persisting it.

version: number

Expected version of the Order Edit on which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.