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