Information about the shopping cart at checkout completion.

interface ShopifyCartInfo {
    lines: ShopifyCartLine[];
    price: ShopifyPrice;
    token: string;
}

Properties

Properties

List of items in the cart.

Price breakdown for the cart.

token: string

The cart token identifier.