001
002package com.commercetools.api.client;
003
004import io.vrap.rmf.base.client.ApiHttpClient;
005import io.vrap.rmf.base.client.utils.Generated;
006
007@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
008public class ByProjectKeyInStoreKeyByStoreKeyProductProjectionsByIDRequestBuilder {
009
010    private final ApiHttpClient apiHttpClient;
011    private final String projectKey;
012    private final String storeKey;
013    private final String ID;
014
015    public ByProjectKeyInStoreKeyByStoreKeyProductProjectionsByIDRequestBuilder(final ApiHttpClient apiHttpClient,
016            final String projectKey, final String storeKey, final String ID) {
017        this.apiHttpClient = apiHttpClient;
018        this.projectKey = projectKey;
019        this.storeKey = storeKey;
020        this.ID = ID;
021    }
022
023    public ByProjectKeyInStoreKeyByStoreKeyProductProjectionsByIDGet get() {
024        return new ByProjectKeyInStoreKeyByStoreKeyProductProjectionsByIDGet(apiHttpClient, projectKey, storeKey, ID);
025    }
026
027}