public interface AdditionalLinePrice
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Returns a clone of the object
|
java.lang.Double |
getPrice()
Returns the price value for this price type
|
java.lang.String |
getPriceTypeName()
Return the price type name
|
java.lang.String |
getReccurringType()
Returns the recurring type value of this price type
|
boolean |
isPriceForInfo()
Returns if this price type is for informational purpose
|
boolean |
isPriceLocked()
Returns true if the price for this price type is price locked, else false
|
void |
setPrice(java.lang.Double price)
Sets the price value for this price type
|
void |
setPriceForInfo(boolean priceForInfo)
Sets whether the price type is for informational purpose
|
void |
setPriceLocked(boolean priceLocked)
Sets the price locked flag for this price type
|
void |
setPriceTypeName(java.lang.String priceTypeName)
Sets the price type name
|
void |
setReccurringType(java.lang.String reccurringType)
Sets the recurring type value for the price type
|
java.lang.String getPriceTypeName()
void setPriceTypeName(java.lang.String priceTypeName)
priceTypeName
- The price type nameboolean isPriceLocked()
void setPriceLocked(boolean priceLocked)
priceLocked
- The price locked flag for this price typejava.lang.String getReccurringType()
void setReccurringType(java.lang.String reccurringType)
reccurringType
- The recurring type value for the price typeboolean isPriceForInfo()
void setPriceForInfo(boolean priceForInfo)
priceForInfo
- A boolean value to indicate whether the price type is for
informational purposejava.lang.Double getPrice()
void setPrice(java.lang.Double price)
price
- The price value for this price typejava.lang.Object clone()