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

io.sphere.sdk.reviews.queries.ReviewRatingStatisticsQueryModel Maven / Gradle / Ivy

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

import io.sphere.sdk.queries.DoubleQuerySortingModel;
import io.sphere.sdk.queries.IntegerQuerySortingModel;
import io.sphere.sdk.queries.OptionalQueryModel;
import io.sphere.sdk.queries.QueryModel;

public interface ReviewRatingStatisticsQueryModel extends OptionalQueryModel {
    IntegerQuerySortingModel count();

    IntegerQuerySortingModel highestRating();

    IntegerQuerySortingModel lowestRating();

    DoubleQuerySortingModel averageRating();

    static  ReviewRatingStatisticsQueryModel of(final QueryModel parent, final String pathSegment) {
        return new ReviewRatingStatisticsQueryModelImpl<>(parent, pathSegment);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy