io.sphere.sdk.carts.queries.LineItemLikeCollectionQueryModel Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.carts.queries;
import io.sphere.sdk.queries.*;
/**
* Query predicate build for line items.
* @param query context
*/
public interface LineItemLikeCollectionQueryModel extends QueryModel, CollectionQueryModel {
@Override
QueryPredicate isEmpty();
@Override
QueryPredicate isNotEmpty();
StringQueryModel id();
LongQuerySortingModel quantity();
LocalizedStringQueryModel name();
ItemStateCollectionQueryModel state();
DiscountedLineItemPriceForQuantityQueryModel discountedPricePerQuantity();
}