com.logicommerce.sdktest.models.order.OrderShipmentItemFake 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.models.order.OrderShipmentItem;
public class OrderShipmentItemFake implements OrderShipmentItem {
private Integer id;
private int quantity;
private Integer orderItemId;
private double weight;
@Override
public Integer getId() {
return id;
}
@Override
public int getQuantity() {
return quantity;
}
@Override
public Integer getOrderItemId() {
return orderItemId;
}
@Override
public double getWeight() {
return weight;
}
public void setId(Integer id) {
this.id = id;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
public void setOrderItemId(Integer orderItemId) {
this.orderItemId = orderItemId;
}
public void setWeight(double weight) {
this.weight = weight;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy