ShippingAddress
Overview
The ShippingAddress
type represents the shipping address associated with a cart in the High Velocity front-end app. It includes additional attributes specific to shipping.
Attributes
id
(optional)
type: string
The unique identifier for the address.
firstName
type: string
The first name of the person associated with the address.
lastName
type: string
The last name of the person associated with the address.
address1
type: string
The primary street address.
address2
(optional)
type: string | null
The secondary street address. This attribute is optional and can be null.
postalCode
type: string
The postal or ZIP code of the address.
city
type: string
The city of the address.
stateCode
(optional)
type: string | null
The state or province code of the address. This attribute is optional and can be null.
countryCode
type: string
The country code of the address.
phone
type: string
The phone number associated with the shipping address.