com.logicommerce.sdktest.models.order.OrderItemPricesFakeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdktest Show documentation
Show all versions of sdktest Show documentation
Logicommerce SDK Testing tools for Logicommerce plugins.
package com.logicommerce.sdktest.models.order;
import com.logicommerce.sdk.builders.order.OrderItemPricesBuilder;
public class OrderItemPricesFakeBuilder extends OrderItemPricesBuilder {
public OrderItemPricesFakeBuilder() {
super();
defaultValues();
}
public OrderItemPricesFakeBuilder(T parentBuilder) {
super(parentBuilder);
defaultValues();
}
private void defaultValues() {
super.productPrice = 0d;
super.optionsPrice = 0d;
super.previousPrice = 0d;
super.price = 0d;
super.totalTaxes = 0d;
super.total = 0d;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy