Interface OrderSetDeliveryAddressCustomTypeAction

All Superinterfaces:
OrderUpdateAction, ResourceUpdateAction<OrderUpdateAction>

public interface OrderSetDeliveryAddressCustomTypeAction extends OrderUpdateAction
OrderSetDeliveryAddressCustomTypeAction
Example to create an instance using the builder pattern

     OrderSetDeliveryAddressCustomTypeAction orderSetDeliveryAddressCustomTypeAction = OrderSetDeliveryAddressCustomTypeAction.builder()
             .build()
 
  • Field Details

    • SET_DELIVERY_ADDRESS_CUSTOM_TYPE

      static final String SET_DELIVERY_ADDRESS_CUSTOM_TYPE
      discriminator value for OrderSetDeliveryAddressCustomTypeAction
      See Also:
  • Method Details

    • getDeliveryId

      String getDeliveryId()

      id of an existing Delivery.

      Either deliveryId or deliveryKey must be provided.

      Returns:
      deliveryId
    • getDeliveryKey

      String getDeliveryKey()

      key of an existing Delivery.

      Either deliveryId or deliveryKey must be provided.

      Returns:
      deliveryKey
    • getType

      @Valid @Valid TypeResourceIdentifier getType()

      Defines the Type that extends the Delivery address with Custom Fields. If absent, any existing Type and Custom Fields are removed from the Delivery address.

      Returns:
      type
    • getFields

      @Valid @Valid FieldContainer getFields()

      Sets the Custom Fields fields for the Delivery address.

      Returns:
      fields
    • setDeliveryId

      void setDeliveryId(String deliveryId)

      id of an existing Delivery.

      Either deliveryId or deliveryKey must be provided.

      Parameters:
      deliveryId - value to be set
    • setDeliveryKey

      void setDeliveryKey(String deliveryKey)

      key of an existing Delivery.

      Either deliveryId or deliveryKey must be provided.

      Parameters:
      deliveryKey - value to be set
    • setType

      void setType(TypeResourceIdentifier type)

      Defines the Type that extends the Delivery address with Custom Fields. If absent, any existing Type and Custom Fields are removed from the Delivery address.

      Parameters:
      type - value to be set
    • setFields

      void setFields(FieldContainer fields)

      Sets the Custom Fields fields for the Delivery address.

      Parameters:
      fields - value to be set
    • of

      factory method
      Returns:
      instance of OrderSetDeliveryAddressCustomTypeAction
    • of

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

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

      builder factory method for OrderSetDeliveryAddressCustomTypeAction
      Returns:
      builder
    • builder

      create builder for OrderSetDeliveryAddressCustomTypeAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withOrderSetDeliveryAddressCustomTypeAction

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