Table of Contents

Enum CartResultType

Namespace
Dynamicweb.Ecommerce.Frontend.Cart
Assembly
Dynamicweb.Ecommerce.dll

Represents the result type of a cart command execution.

public enum CartResultType

Fields

AllOrderLinesDeleted = 8

Indicates that all order lines were successfully deleted.

CartArchived = 13

Indicates that the cart was successfully archived.

CartCopied = 10

Indicates that the cart was successfully copied.

CartCreated = 15

Indicates that a new cart was successfully created.

CartDiscountSet = 12

Indicates that cart discount was successfully set.

CartEmptied = 3

Indicates that the cart was successfully emptied.

CartNameSet = 11

Indicates that the cart name was successfully set.

CartSet = 14

Indicates that the cart was successfully set as active.

Error = 17

Indicates that an error occurred during cart command execution.

None = 0

No specific result type.

OrderLineDecremented = 6

Indicates that an order line quantity was successfully decremented.

OrderLineDeleted = 7

Indicates that an order line was successfully deleted.

OrderLineIncremented = 5

Indicates that an order line quantity was successfully incremented.

OrderLinesUpdated = 4

Indicates that order lines were successfully updated.

PaymentCombined = 16

Indicates that multiple ledger entries were successfully combined for payment.

ProductAdded = 1

Indicates that a product was successfully added to the cart.

ProductRemoved = 2

Indicates that a product was successfully removed from the cart.

SavedForLaterRemoved = 9

Indicates that a saved for later product was successfully removed.

To top