Skip to main content

CheckoutProblem Union

Represents an problem in the checkout.

union CheckoutProblem =
| CheckoutProblemDeliveryMethodStale
| CheckoutProblemDeliveryMethodInvalid
| CheckoutLineProblemInsufficientStock
| CheckoutLineProblemVariantNotAvailable

Possible types​

CheckoutProblemDeliveryMethodStale​

Indicates that the delivery methods are stale.

Added in Saleor 3.23 (unreleased)

CheckoutProblemDeliveryMethodInvalid​

Indicates that the selected delivery method is invalid.

Added in Saleor 3.23 (unreleased)

CheckoutLineProblemInsufficientStock​

Indicates insufficient stock for a given checkout line.Placing the order will not be possible until solving this problem.

CheckoutLineProblemVariantNotAvailable​

The variant assigned to the checkout line is not available.Placing the order will not be possible until solving this problem.

Member Of​

Checkout object