Interface ShippingMethodDraft

All Superinterfaces:
CustomizableDraft<ShippingMethodDraft>, io.vrap.rmf.base.client.Draft<ShippingMethodDraft>, WithKey
All Known Implementing Classes:
ShippingMethodDraftImpl

public interface ShippingMethodDraft extends CustomizableDraft<ShippingMethodDraft>, WithKey, io.vrap.rmf.base.client.Draft<ShippingMethodDraft>
ShippingMethodDraft
Example to create an instance using the builder pattern

     ShippingMethodDraft shippingMethodDraft = ShippingMethodDraft.builder()
             .name("{name}")
             .taxCategory(taxCategoryBuilder -> taxCategoryBuilder)
             .plusZoneRates(zoneRatesBuilder -> zoneRatesBuilder)
             .isDefault(true)
             .build()