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

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

There is a newer version: 1.0.0-M26
Show newest version
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