io.sphere.sdk.zones.queries.LocationsCollectionQueryModel Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.zones.queries;
import io.sphere.sdk.queries.CountryQueryModel;
import io.sphere.sdk.queries.QueryPredicate;
import io.sphere.sdk.queries.StringQueryModel;
import java.util.function.Function;
public interface LocationsCollectionQueryModel extends SharedLocationsCollectionQueryModel {
@Override
CountryQueryModel country();
@Override
StringQueryModel state();
QueryPredicate where(QueryPredicate embeddedPredicate);
QueryPredicate where(Function> embeddedPredicate);
}