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

io.sphere.sdk.discountcodes.queries.DiscountCodeQueryModel Maven / Gradle / Ivy

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

import io.sphere.sdk.discountcodes.DiscountCode;
import io.sphere.sdk.queries.ResourceQueryModelImpl;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.StringQuerySortingModel;

public class DiscountCodeQueryModel extends ResourceQueryModelImpl {

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

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


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy