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

io.sphere.sdk.customergroups.queries.CustomerGroupQueryModel Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
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