public interface ShippingDestination
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | CLASS_VERSION | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getCurrencyCode()Returns the currency code | 
| Address | getShippingAddress()Returns the shipping address of the purchaser | 
| double | getShippingAmount()Returns the shipping and handling cost amount for the order
 Some states might impose taxes on the shipping amount | 
| TaxableItem | getTaxableItem(int i)Return a single item which was purchased. | 
| double | getTaxableItemAmount()Returns the total taxable amount for all the items, excluding the shipping. | 
| TaxableItem[] | getTaxableItems()Returns the items that were purchased
 All items will be represented as TaxableItem objects. | 
static final java.lang.String CLASS_VERSION
java.lang.String getCurrencyCode()
double getShippingAmount()
Address getShippingAddress()
double getTaxableItemAmount()
TaxableItem[] getTaxableItems()
TaxableItem getTaxableItem(int i)