com.commercetools.importapi.client.ByProjectKeyProductVariantsRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-importapi Show documentation
Show all versions of commercetools-sdk-java-importapi Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.importapi.client;
import io.vrap.rmf.base.client.ApiHttpClient;
import io.vrap.rmf.base.client.utils.Generated;
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class ByProjectKeyProductVariantsRequestBuilder {
private final ApiHttpClient apiHttpClient;
private final String projectKey;
public ByProjectKeyProductVariantsRequestBuilder(final ApiHttpClient apiHttpClient, final String projectKey) {
this.apiHttpClient = apiHttpClient;
this.projectKey = projectKey;
}
public ByProjectKeyProductVariantsImportContainersRequestBuilder importContainers() {
return new ByProjectKeyProductVariantsImportContainersRequestBuilder(apiHttpClient, projectKey);
}
}