Class TaxPortionBuilder

java.lang.Object
com.commercetools.importapi.models.orders.TaxPortionBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<TaxPortion>

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

     TaxPortion taxPortion = TaxPortion.builder()
             .rate(0.3)
             .amount(amountBuilder -> amountBuilder)
             .build()