io.sphere.sdk.carts.queries.CartLikeQueryModel Maven / Gradle / Ivy
package io.sphere.sdk.carts.queries;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.queries.*;
import io.sphere.sdk.types.queries.WithCustomQueryModel;
public interface CartLikeQueryModel extends ResourceQueryModel, WithCustomQueryModel {
StringQuerySortingModel customerId();
StringQuerySortingModel customerEmail();
MoneyQueryModel totalPrice();
TaxedPriceOptionalQueryModel taxedPrice();
CountryQueryModel country();
ReferenceOptionalQueryModel customerGroup();
LineItemCollectionQueryModel lineItems();
CustomLineItemCollectionQueryModel customLineItems();
AddressQueryModel shippingAddress();
AddressQueryModel billingAddress();
CartShippingInfoQueryModel shippingInfo();
DiscountCodeInfoCollectionQueryModel discountCodes();
PaymentInfoQueryModel paymentInfo();
ShippingRateInputQueryModel shippingRateInput();
StringQuerySortingModel anonymousId();
LocaleQueryModel locale();
AddressCollectionQueryModel itemShippingAddresses();
KeyReferenceQueryModel store();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy