Interface CartSetBillingAddressAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>
All Known Implementing Classes:
CartSetBillingAddressActionImpl

public interface CartSetBillingAddressAction extends CartUpdateAction
CartSetBillingAddressAction
Example to create an instance using the builder pattern

     CartSetBillingAddressAction cartSetBillingAddressAction = CartSetBillingAddressAction.builder()
             .build()
 
  • Field Details

    • SET_BILLING_ADDRESS

      static final String SET_BILLING_ADDRESS
      discriminator value for CartSetBillingAddressAction
      See Also:
  • Method Details

    • getAddress

      @Valid @Valid BaseAddress getAddress()

      Value to set. If empty, any existing value is removed.

      Returns:
      address
    • setAddress

      void setAddress(BaseAddress address)

      Value to set. If empty, any existing value is removed.

      Parameters:
      address - value to be set
    • of

      factory method
      Returns:
      instance of CartSetBillingAddressAction
    • of

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

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

      builder factory method for CartSetBillingAddressAction
      Returns:
      builder
    • builder

      create builder for CartSetBillingAddressAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCartSetBillingAddressAction

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