Class InventoryEntryDraftBuilder

java.lang.Object
com.commercetools.api.models.inventory.InventoryEntryDraftBuilder
All Implemented Interfaces:
Builder<InventoryEntryDraft>

public class InventoryEntryDraftBuilder extends Object implements Builder<InventoryEntryDraft>
InventoryEntryDraftBuilder
Example to create an instance using the builder pattern

     InventoryEntryDraft inventoryEntryDraft = InventoryEntryDraft.builder()
             .sku("{sku}")
             .quantityOnStock(0.3)
             .build()