io.sphere.sdk.reviews.queries.ReviewQueryModel Maven / Gradle / Ivy
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