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

io.sphere.sdk.products.search.ProductVariantFilterSearchModel Maven / Gradle / Ivy

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

import io.sphere.sdk.products.ProductProjection;
import io.sphere.sdk.search.model.MoneyFilterSearchModel;
import io.sphere.sdk.search.model.SearchModel;
import io.sphere.sdk.search.model.SearchModelImpl;

import javax.annotation.Nullable;

public class ProductVariantFilterSearchModel extends SearchModelImpl {

    ProductVariantFilterSearchModel(@Nullable final SearchModel parent, @Nullable final String pathSegment) {
        super(parent, pathSegment);
    }

    public ProductAttributeFilterSearchModel attribute() {
        return new ProductAttributeFilterSearchModel(this, "attributes");
    }

    public MoneyFilterSearchModel price() {
        return moneyFilterSearchModel("price");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy