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

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

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

import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.queries.*;
import io.sphere.sdk.reviews.Review;
import io.sphere.sdk.states.State;
import io.sphere.sdk.types.queries.WithCustomQueryModel;

public interface ReviewQueryModel extends ResourceQueryModel,WithCustomQueryModel {
    StringQuerySortingModel key();

    StringQuerySortingModel uniquenessValue();

    StringQuerySortingModel title();

    StringQuerySortingModel text();

    StringQuerySortingModel authorName();

    LocaleQuerySortingModel locale();

    AnyReferenceQueryModel target();

    IntegerQuerySortingModel rating();

    ReferenceOptionalQueryModel state();

    BooleanQueryModel includedInStatistics();

    ReferenceOptionalQueryModel customer();

    static ReviewQueryModel of() {
        return new ReviewQueryModelImpl(null, null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy