All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.orders.LineItemImportDraft Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.orders;

import io.sphere.sdk.carts.ItemState;
import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.models.LocalizedStrings;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.products.Price;
import io.sphere.sdk.taxcategories.TaxRate;

import java.util.Optional;
import java.util.Set;

/**
 *
 * @see LineItemImportDraftBuilder
 */
public interface LineItemImportDraft {
    LocalizedStrings getName();

    Price getPrice();

    Optional getProductId();

    long getQuantity();

    Optional> getState();

    Optional> getSupplyChannel();

    Optional getTaxRate();

    ProductVariantImportDraft getVariant();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy