Interface: CartContactInfo
Formatted contact information field for display.
This interface defines a single piece of customer information that has been formatted for display in cart summaries, email templates, or administrative interfaces. It includes both the field's value and metadata about how it should be displayed.
Properties
checked?
optional
checked:boolean
Checkbox selection state.
For checkbox-type fields, indicates whether the checkbox was selected (true) or not (false). This affects how the field is displayed.
href?
optional
href:string
URL for clickable fields.
Optional hyperlink URL if this field should be displayed as a clickable link (e.g., email addresses, website URLs).
isCheckbox?
optional
isCheckbox:boolean
Indicates if this field is a checkbox.
When true
, this field represents a boolean choice that should be
displayed as a checkbox rather than a text value.
key
key:
string
Unique identifier for this information field.
A key that uniquely identifies this field in the system, which can be used for referencing or updating the field programmatically.
target?
optional
target:string
Link target for clickable fields.
Specifies how clickable links should open, such as in a new tab (_blank) or in the current window (_self).
title
title:
string
Display label for this information field.
The human-readable text label that describes what this field represents (e.g., "Full Name", "Email Address", "Delivery Instructions").
titleKey?
optional
titleKey:object
Internationalization key for the title.
Optional message ID and default text for translating the title into different languages based on the user's locale preference.
defaultMessage
defaultMessage:
string
Fallback text if translation is unavailable.
The default text to display if no translation is available for the current locale. This ensures the UI is always readable.
messageId
messageId:
string
Message identifier for translation.
A unique key that identifies this text in the translation system, allowing it to be replaced with localized text.
value
value:
string
The field's value to display.
The actual customer-provided information for this field, formatted as a string for display purposes.