Interface: CartForEmail
Comprehensive cart data formatted for email or detailed display.
This interface provides a complete representation of a cart, including all items, pricing information, customer details, and submission data. It's designed for generating detailed cart views such as email confirmations, order summaries, or administrative interfaces.
Properties
cartId
cartId:
string
Unique identifier for this cart.
The system-generated ID that uniquely identifies this cart in the database. This ID is used for all cart operations and tracking.
cartItems
cartItems:
CartItem
[]
All items currently in the cart.
The complete list of products that have been added to this cart, including their configurations, quantities, and current prices.
contactInfo?
optional
contactInfo:CartContactInfo
[]
Formatted customer information for display.
Customer contact and submission details formatted for easy display in email templates or summary views. This includes both standard fields and any custom fields collected during checkout.
currency?
optional
currency:string
Currency code for all monetary values.
The three-letter ISO currency code (e.g., "USD", "EUR") that applies to all price values in this cart.
finalPrice?
optional
finalPrice:number
Final cart total after all modifiers.
The final price after applying all discounts, surcharges, taxes, or other price modifiers to the subtotal.
presubmissionData?
optional
presubmissionData:Partial
<BasketSubmissionData
>
Partially saved customer information.
Contact information that was saved during the checkout process but before final submission. This may be incomplete if the checkout process spans multiple steps.
priceModifiers?
optional
priceModifiers:PriceModifier
[]
List of all price adjustments applied.
Detailed information about each discount, surcharge, or other price modification that affected the final price. These provide transparency about how the final price was calculated.
referenceCode
referenceCode:
string
Order tracking code after submission.
The human-readable reference code generated for this cart after submission. This code is used for customer communications and order tracking.
submissionData?
optional
submissionData:Partial
<BasketSubmissionData
>
Complete customer information provided at submission.
The full set of contact and custom field data provided during the checkout process when the cart was submitted.
submissionDisplayName?
optional
submissionDisplayName:string
Customer-friendly name for the submission.
An optional display name for the submission that may be more user-friendly than the technical reference code. This could be based on project names, customer names, or other business-specific identifiers.
totalQuantity
totalQuantity:
number
Total number of items across all product lines.
The sum of quantities for all items in the cart. This may differ from the number of distinct products if some products have quantities greater than 1.
totalValue
totalValue:
number
Subtotal value before any modifiers.
The sum of (price × quantity) for all items in the cart before any discounts, taxes, or other price modifiers are applied.