io.sphere.sdk.carts.queries.CartShippingInfoQueryModel Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.carts.queries;
import io.sphere.sdk.queries.MoneyQueryModel;
import io.sphere.sdk.queries.ReferenceOptionalQueryModel;
import io.sphere.sdk.queries.StringQueryModel;
import io.sphere.sdk.shippingmethods.ShippingMethod;
import io.sphere.sdk.taxcategories.queries.TaxRateQueryModel;
public interface CartShippingInfoQueryModel {
StringQueryModel shippingMethodName();
MoneyQueryModel price();
TaxRateQueryModel taxRate();
ReferenceOptionalQueryModel shippingMethod();
DiscountedLineItemPriceQueryModel discountedPrice();
}