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

io.sphere.sdk.cartdiscounts.CartPredicate Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.cartdiscounts;

/**
 * The predicate offers a flexible way to define whether the discount or shipping method can be applied to a cart.
 */
public interface CartPredicate {
    String toSphereCartPredicate();

    static CartPredicate of(final String predicate) {
        return new CartPredicateImpl(predicate);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy