com.logicommerce.sdk.models.order.OrderItemTax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.models.order;
import com.logicommerce.sdk.enums.TaxType;
/**
* OrderItemTax interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface OrderItemTax {
/**
* getBase.
*
* @return a double
*/
double getBase();
/**
* getTaxValue.
*
* @return a double
*/
double getTaxValue();
/**
* getTaxValue.
*
* @return a double
*/
double getTaxRate();
/**
* getTaxType.
*
* @return a {@link TaxType} object
*/
TaxType getType();
/**
* get code
*
* @return a String object
*/
String getCode();
}