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

io.sphere.sdk.carts.CustomLineItem Maven / Gradle / Ivy

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

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
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.List;
import java.util.Optional;

@JsonDeserialize(as=CustomLineItemImpl.class)
public interface CustomLineItem {
    String getId();

    LocalizedStrings getName();

    MonetaryAmount getMoney();

    String getSlug();

    int getQuantity();

    List getState();

    Reference getTaxCategory();

    Optional getTaxRate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy