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 ByProjectKeyInStoreKeyByStoreKeyCartsCustomerIdByCustomerIdRequestBuilder {
009
010    private final ApiHttpClient apiHttpClient;
011    private final String projectKey;
012    private final String storeKey;
013    private final String customerId;
014
015    public ByProjectKeyInStoreKeyByStoreKeyCartsCustomerIdByCustomerIdRequestBuilder(final ApiHttpClient apiHttpClient,
016            final String projectKey, final String storeKey, final String customerId) {
017        this.apiHttpClient = apiHttpClient;
018        this.projectKey = projectKey;
019        this.storeKey = storeKey;
020        this.customerId = customerId;
021    }
022
023    public ByProjectKeyInStoreKeyByStoreKeyCartsCustomerIdByCustomerIdGet get() {
024        return new ByProjectKeyInStoreKeyByStoreKeyCartsCustomerIdByCustomerIdGet(apiHttpClient, projectKey, storeKey,
025            customerId);
026    }
027
028}