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

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy