com.labs64.netlicensing.domain.entity.ProductDiscount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
The newest version!
package com.labs64.netlicensing.domain.entity;
import java.math.BigDecimal;
public interface ProductDiscount extends Comparable {
void setProduct(final Product product);
Product getProduct();
void setTotalPrice(final BigDecimal totalPrice);
BigDecimal getTotalPrice();
void setCurrency(final String currency);
String getCurrency();
void setAmountFix(final BigDecimal amountFix);
BigDecimal getAmountFix();
void setAmountPercent(final BigDecimal amountPercent);
BigDecimal getAmountPercent();
}