Class TaxPortionDraftBuilder

java.lang.Object
com.commercetools.api.models.cart.TaxPortionDraftBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<TaxPortionDraft>

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

     TaxPortionDraft taxPortionDraft = TaxPortionDraft.builder()
             .rate(0.3)
             .amount(amountBuilder -> amountBuilder)
             .build()