io.sphere.sdk.customergroups.queries.CustomerGroupQueryModel Maven / Gradle / Ivy
package io.sphere.sdk.customergroups.queries;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.queries.ResourceQueryModelImpl;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.StringQuerySortingModel;
public class CustomerGroupQueryModel extends ResourceQueryModelImpl {
private CustomerGroupQueryModel(final QueryModel parent, final String pathSegment) {
super(parent, pathSegment);
}
static CustomerGroupQueryModel of() {
return new CustomerGroupQueryModel(null, null);
}
public StringQuerySortingModel name() {
return stringModel("name");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy