Class InventoryImportBuilder

java.lang.Object
com.commercetools.importapi.models.inventories.InventoryImportBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<InventoryImport>

public class InventoryImportBuilder extends Object implements io.vrap.rmf.base.client.Builder<InventoryImport>
InventoryImportBuilder
Example to create an instance using the builder pattern

     InventoryImport inventoryImport = InventoryImport.builder()
             .key("{key}")
             .sku("{sku}")
             .quantityOnStock(0.3)
             .build()
 
  • Constructor Details

    • InventoryImportBuilder

      public InventoryImportBuilder()
  • Method Details