Interface ShippingMethodChangeValue


public interface ShippingMethodChangeValue
ShippingMethodChangeValue
Example to create an instance using the builder pattern

     ShippingMethodChangeValue shippingMethodChangeValue = ShippingMethodChangeValue.builder()
             .id("{id}")
             .name("{name}")
             .build()
 
  • Method Details

    • getId

      @NotNull @NotNull String getId()

      id of the ShippingMethod.

      Returns:
      id
    • getName

      @NotNull @NotNull String getName()

      Name of the ShippingMethod.

      Returns:
      name
    • setId

      void setId(String id)

      id of the ShippingMethod.

      Parameters:
      id - value to be set
    • setName

      void setName(String name)

      Name of the ShippingMethod.

      Parameters:
      name - value to be set
    • of

      factory method
      Returns:
      instance of ShippingMethodChangeValue
    • of

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

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

      builder factory method for ShippingMethodChangeValue
      Returns:
      builder
    • builder

      create builder for ShippingMethodChangeValue instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withShippingMethodChangeValue

      default <T> T withShippingMethodChangeValue(Function<ShippingMethodChangeValue,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<ShippingMethodChangeValue> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference