## Create a Shipping Address Element `checkout.createShippingAddressElement(options?: object)` This method creates an instance of a Shipping Address Element. - `options` Shipping Address Element initialization options. - `contacts` An array of objects that can be displayed as saved addresses in the Shipping Address Element. The first contact is automatically selected. - `name` The name of the contact. This might be a person, or a business name. - `address` The address of the contact. - `line1` - `line2` - `city` The name of a city, town, village, etc. - `state` The most coarse subdivision of a country. Depending on the country, this might correspond to a state, a province, an oblast, a prefecture, or something else along these lines. - `postal_code` The postal code or ZIP code, also known as PIN code in India. - `country` Two-letter country code, capitalized. Valid two-letter country codes are specified by ISO3166 alpha-2. - `phone` The phone number of the contact. - `display` You can customize how certain fields are displayed. - `name` By default, the Shipping Address Element displays a full name field. Specify 'split' to display a first name field and a last name field. Specify 'organization' to display an organization field. ### Example ```title Create a Shipping Address Element ```