Provides the shipping details to a <payment:payment> tag.
Must be nested in a <payment:payment> tag.
Contains nested:
- ? <payment:firstName> - The shipping recipient first/given name
- ? <payment:lastName> - The shipping recipient last/family name
- ? <payment:companyName> - The shipping recipient company name
- ! <payment:streetAddress1> - The shipping street address (line 1)
- ? <payment:streetAddress2> - The shipping street address (line 2)
- ! <payment:city> - The shipping city
- ? <payment:state> - The shipping state/province/prefecture
- ? <payment:postalCode> - The shipping ZIP/postal code
- ! <payment:countryCode> - The shipping two-digit ISO 3166-1 alpha-2 country code
? indicates zero or one use allowed
! indicates exactly one use required
Tag Information
Tag Class: | com.newmediaworks.taglib.payment.ShippingAddressTag |
---|---|
TagExtraInfo Class: | None |
Body Content: | JSP |
Display Name: | None |
Attributes
Name | Required | Evaluation | Type | Description |
---|---|---|---|---|
firstName | No | Runtime | String |
Provides a first/given name. A nested <payment:firstName> tag will override this value. |
lastName | No | Runtime | String |
Provides a last/family name. A nested <payment:lastName> tag will override this value. |
companyName | No | Runtime | String |
Provides a company name. A nested <payment:companyName> tag will override this value. |
streetAddress1 | No | Runtime | String |
Provides the street address (line 1). A nested <payment:streetAddress1> tag will override this value. |
streetAddress2 | No | Runtime | String |
Provides the street address (line 2). A nested <payment:streetAddress2> tag will override this value. |
city | No | Runtime | String |
Provides the city. A nested <payment:city> tag will override this value. |
state | No | Runtime | String |
Provides the state/province/prefecture. A nested <payment:state> tag will override this value. |
postalCode | No | Runtime | String |
Provides the ZIP/postal code. A nested <payment:postalCode> tag will override this value. |
countryCode | No | Runtime | String |
Provides a two-digit ISO 3166-1 alpha-2 country code. A nested <payment:countryCode> tag will override this value. |