io.sphere.sdk.orders.LineItemImportDraft Maven / Gradle / Ivy
package io.sphere.sdk.orders;
import io.sphere.sdk.carts.ItemState;
import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.models.LocalizedString;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.products.Price;
import io.sphere.sdk.taxcategories.TaxRate;
import javax.annotation.Nullable;
import java.util.Set;
/**
*
* @see LineItemImportDraftBuilder
*/
public interface LineItemImportDraft {
LocalizedString getName();
Price getPrice();
@Nullable
String getProductId();
Long getQuantity();
@Nullable
Set getState();
@Nullable
Reference getSupplyChannel();
@Nullable
TaxRate getTaxRate();
ProductVariantImportDraft getVariant();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy