
io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryModel Maven / Gradle / Ivy
package io.sphere.sdk.shippingmethods.queries;
import io.sphere.sdk.queries.BooleanQueryModel;
import io.sphere.sdk.queries.ReferenceQueryModel;
import io.sphere.sdk.queries.ResourceQueryModel;
import io.sphere.sdk.queries.StringQuerySortingModel;
import io.sphere.sdk.shippingmethods.ShippingMethod;
import io.sphere.sdk.taxcategories.TaxCategory;
public interface ShippingMethodQueryModel extends ResourceQueryModel {
StringQuerySortingModel name();
ReferenceQueryModel taxCategory();
ZoneRateCollectionQueryModel zoneRates();
BooleanQueryModel isDefault();
static ShippingMethodQueryModel of() {
return new ShippingMethodQueryModelImpl(null, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy