Result of a succesful application of stagedActions to the Order.

interface OrderEditApplied {
    appliedAt: string;
    excerptAfterEdit: OrderExcerpt;
    excerptBeforeEdit: OrderExcerpt;
    type: "Applied";
}

Properties

appliedAt: string

Date and time (UTC) the Order was edited.

excerptAfterEdit: OrderExcerpt

Prices of the Order after the edit.

excerptBeforeEdit: OrderExcerpt

Prices of the Order before the edit.

type: "Applied"