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

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

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

import com.fasterxml.jackson.annotation.JsonInclude;
import io.sphere.sdk.carts.ItemState;
import io.sphere.sdk.models.LocalizedStrings;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.taxcategories.TaxCategory;
import io.sphere.sdk.taxcategories.TaxRate;

import javax.money.MonetaryAmount;
import java.util.Optional;
import java.util.Set;

/**
 * @see CustomLineItemImportDraftBuilder
 */
public interface CustomLineItemImportDraft {

    LocalizedStrings getName();

    MonetaryAmount getMoney();

    String getSlug();

    long getQuantity();

    Reference getTaxCategory();

    Optional getTaxRate();

    @JsonInclude(value = JsonInclude.Include.NON_EMPTY)
    Optional> getState();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy