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

io.sphere.sdk.productdiscounts.ProductDiscountPredicate Maven / Gradle / Ivy

package io.sphere.sdk.productdiscounts;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

@JsonDeserialize(as = ProductDiscountPredicateImpl.class)
public interface ProductDiscountPredicate {
    String toSpherePredicate();

    static ProductDiscountPredicate of(final String predicate) {
        return new ProductDiscountPredicateImpl(predicate);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy