Interface CheckoutMessagePaymentsPayloadBaseData

The data payload of all payment related event messages.

interface CheckoutMessagePaymentsPayloadBaseData {
    cart?: CartReference;
    order?: OrderReference;
    payment: PaymentReference;
    projectKey: string;
    transactionId: string;
}

Properties

The Cart on which the change or action was performed.

The Order on which the change or action was performed.

The Payment on which the change or action was performed.

projectKey: string

key of the Project where the payment was made.

transactionId: string

id of the Transaction.