io.sphere.sdk.carts.LineItemLike Maven / Gradle / Ivy
package io.sphere.sdk.carts;
import io.sphere.sdk.cartdiscounts.DiscountedLineItemPrice;
import io.sphere.sdk.types.Custom;
import javax.annotation.Nullable;
import java.util.Set;
public interface LineItemLike extends Custom {
String getId();
Set getState();
Long getQuantity();
@Nullable
DiscountedLineItemPrice getDiscountedPrice();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy