Skip to main content

Type Alias: GetCartItemsResponse

GetCartItemsResponse = { code: "CART_CLOSED" | "CART_NOT_FOUND" | "CART_ACCESS_FORBIDDEN"; } | CartItem[]

Response structure for cart item retrieval operations.

This type represents the possible responses when attempting to retrieve items from a cart. It can either return the list of items in the cart or an error code indicating why the items couldn't be retrieved.

The dual return type enables graceful handling of common cart access scenarios without throwing exceptions, allowing the application to display appropriate messages based on the specific situation.