The data payload of all related order event messages.

interface CheckoutMessageOrderPayloadBaseData {
    cart: CartReference;
    errors: ErrorObject[];
    payments: PaymentReference[];
    projectKey: string;
}

Properties

The Cart on which the change or action was performed.

errors: ErrorObject[]

Errors associated with the order event.

payments: PaymentReference[]

The Payments on which the change or action was performed.

projectKey: string

key of the Project where the order would belong to.