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

io.sphere.sdk.types.queries.TypeQueryModel Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.types.queries;

import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.ResourceQueryModelImpl;
import io.sphere.sdk.queries.StringQuerySortingModel;
import io.sphere.sdk.types.Type;

public final class TypeQueryModel extends ResourceQueryModelImpl {

    public static TypeQueryModel of() {
        return new TypeQueryModel(null, null);
    }

    private TypeQueryModel(final QueryModel parent, final String pathSegment) {
        super(parent, pathSegment);
    }

    public StringQuerySortingModel key() {
        return stringModel("key");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy