Primary address line.
Secondary address line (apartment, suite, etc.).
City name on the shipping address.
console("Shipping to city: " + CheckoutItem.Address.City);
Company name on the shipping address.
if (CheckoutItem.Address.Company) {
console("Business address - company: " + CheckoutItem.Address.Company);
}
Country information for the shipping address.
Email address on the shipping address.
Fax number on the shipping address.
First name on the shipping address.
Last name on the shipping address.
Phone number on the shipping address.
State/province information for the shipping address.
ZIP or postal code.
console("Shipping ZIP: " + CheckoutItem.Address.ZipPostalCode);
Generated using TypeDoc
Represents shipping address information during checkout. Provides comprehensive access to the shipping address details.