-
public final class Purchase
-
-
Field Summary
Fields Modifier and Type Field Description private final StringpurchaseIdprivate final List<ProductBasketItem>productsprivate final IntegertotalQuantityprivate final BigDecimaltotalPriceprivate final StringcartIdprivate final StringpaymentMethodprivate final DatepurchaseDateprivate final StringsourceTypeprivate final StringsourceName
-
Method Summary
Modifier and Type Method Description final StringgetPurchaseId()final List<ProductBasketItem>getProducts()final IntegergetTotalQuantity()final BigDecimalgetTotalPrice()final StringgetCartId()final StringgetPaymentMethod()final DategetPurchaseDate()final StringgetSourceType()final StringgetSourceName()-
-
Constructor Detail
-
Purchase
Purchase(String purchaseId, List<ProductBasketItem> products, Integer totalQuantity, BigDecimal totalPrice, String cartId, String paymentMethod, Date purchaseDate, String sourceType, String sourceName)
-
-
Method Detail
-
getPurchaseId
final String getPurchaseId()
-
getProducts
final List<ProductBasketItem> getProducts()
-
getTotalQuantity
final Integer getTotalQuantity()
-
getTotalPrice
final BigDecimal getTotalPrice()
-
getPaymentMethod
final String getPaymentMethod()
-
getPurchaseDate
final Date getPurchaseDate()
-
getSourceType
final String getSourceType()
-
getSourceName
final String getSourceName()
-
-
-
-