public class OrderPriceSummary
extends java.lang.Object
| Modifier and Type | Field and Description | 
|---|---|
static java.lang.String | 
CLASS_VERSION
Class version string 
 | 
| Constructor and Description | 
|---|
OrderPriceSummary()  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getCurrencyCode()
the currency code 
 | 
ItemPriceSummary[] | 
getItemPrices()
an array of the item costs 
 | 
java.lang.String | 
getOrderId()
the order id 
 | 
double | 
getShipping()
the shipping cost of the order 
 | 
ShippingPriceSummary[] | 
getShippingPrices()
an array of the shipping costs 
 | 
double | 
getTax()
the tax on the order 
 | 
double | 
getTotalPrice()
the current working total, including all discounts 
 | 
void | 
setCurrencyCode(java.lang.String pCurrencyCode)
the currency code 
 | 
void | 
setItemPrices(ItemPriceSummary[] pItemPrices)
an array of the item costs 
 | 
void | 
setOrderId(java.lang.String pOrderId)
the order id 
 | 
void | 
setShipping(double pShipping)
the shipping cost of the order 
 | 
void | 
setShippingPrices(ShippingPriceSummary[] pShippingPrices)
an array of the shipping costs 
 | 
void | 
setTax(double pTax)
the tax on the order 
 | 
void | 
setTotalPrice(double pTotalPrice)
the current working total, including all discounts 
 | 
java.lang.String | 
toString()
Returns a string form of this price information 
 | 
public void setOrderId(java.lang.String pOrderId)
pOrderId - new value to setpublic java.lang.String getOrderId()
public void setCurrencyCode(java.lang.String pCurrencyCode)
pCurrencyCode - new value to setpublic java.lang.String getCurrencyCode()
public void setTax(double pTax)
pTax - new value to setpublic double getTax()
public void setShipping(double pShipping)
pShipping - new value to setpublic double getShipping()
public void setTotalPrice(double pTotalPrice)
pTotalPrice - new value to setpublic double getTotalPrice()
public void setShippingPrices(ShippingPriceSummary[] pShippingPrices)
pShippingPrices - new value to setpublic ShippingPriceSummary[] getShippingPrices()
public void setItemPrices(ItemPriceSummary[] pItemPrices)
pItemPrices - new value to setpublic ItemPriceSummary[] getItemPrices()
public java.lang.String toString()
toString in class java.lang.Object