Class StandalonePriceImportBuilder

java.lang.Object
com.commercetools.importapi.models.standalone_prices.StandalonePriceImportBuilder
All Implemented Interfaces:
Builder<StandalonePriceImport>

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

     StandalonePriceImport standalonePriceImport = StandalonePriceImport.builder()
             .key("{key}")
             .sku("{sku}")
             .value(valueBuilder -> valueBuilder)
             .build()