Interface ShippingRateDraft

All Superinterfaces:
io.vrap.rmf.base.client.Draft<ShippingRateDraft>
All Known Implementing Classes:
ShippingRateDraftImpl

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

     ShippingRateDraft shippingRateDraft = ShippingRateDraft.builder()
             .price(priceBuilder -> priceBuilder)
             .build()
 
  • Method Details

    • getPrice

      @NotNull @Valid @NotNull @Valid Money getPrice()

      Money value of the ShippingRate.

      Returns:
      price
    • getFreeAbove

      @Valid @Valid Money getFreeAbove()

      Shipping is free if the sum of the (Custom) Line Item Prices reaches the specified value.

      Returns:
      freeAbove
    • getTiers

      Price tiers for the ShippingRate.

      Returns:
      tiers
    • setPrice

      void setPrice(Money price)

      Money value of the ShippingRate.

      Parameters:
      price - value to be set
    • setFreeAbove

      void setFreeAbove(Money freeAbove)

      Shipping is free if the sum of the (Custom) Line Item Prices reaches the specified value.

      Parameters:
      freeAbove - value to be set
    • setTiers

      Price tiers for the ShippingRate.

      Parameters:
      tiers - values to be set
    • setTiers

      Price tiers for the ShippingRate.

      Parameters:
      tiers - values to be set
    • of

      factory method
      Returns:
      instance of ShippingRateDraft
    • of

      factory method to create a shallow copy ShippingRateDraft
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ShippingRateDraft
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ShippingRateDraft
      Returns:
      builder
    • builder

      create builder for ShippingRateDraft instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withShippingRateDraft

      default <T> T withShippingRateDraft(Function<ShippingRateDraft,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ShippingRateDraft> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference