Package com.six.timapi
Class ItemQuantity
- java.lang.Object
-
- com.six.timapi.ItemQuantity
-
public class ItemQuantity extends Object
-
-
Constructor Summary
Constructors Constructor Description ItemQuantity(int quantity, int exponent, String quantityType)Create basket item quantity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetExponent()Exponent of quantity of the product.intgetQuantity()Quantity of the product.StringgetQuantityType()Type of quantity of the product.
-
-
-
Constructor Detail
-
ItemQuantity
public ItemQuantity(int quantity, int exponent, String quantityType)Create basket item quantity.
-
-
Method Detail
-
getQuantity
public int getQuantity()
Quantity of the product.
-
getExponent
public int getExponent()
Exponent of quantity of the product.
-
getQuantityType
public String getQuantityType()
Type of quantity of the product.
-
-