io.sphere.sdk.orders.CustomLineItemImportDraft Maven / Gradle / Ivy
package io.sphere.sdk.orders;
import com.fasterxml.jackson.annotation.JsonInclude;
import io.sphere.sdk.carts.ItemState;
import io.sphere.sdk.models.LocalizedString;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.taxcategories.TaxCategory;
import io.sphere.sdk.taxcategories.TaxRate;
import javax.annotation.Nullable;
import javax.money.MonetaryAmount;
import java.util.Set;
/**
* @see CustomLineItemImportDraftBuilder
*/
public interface CustomLineItemImportDraft {
LocalizedString getName();
MonetaryAmount getMoney();
String getSlug();
Long getQuantity();
Reference getTaxCategory();
@Nullable
TaxRate getTaxRate();
@JsonInclude(value = JsonInclude.Include.NON_EMPTY)
@Nullable
Set getState();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy