Interface ParcelTrackingDataUpdatedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin, OrderMessagePayload

public interface ParcelTrackingDataUpdatedMessagePayload extends OrderMessagePayload

Generated after a successful Set Parcel Tracking Data update action.


Example to create an instance using the builder pattern

     ParcelTrackingDataUpdatedMessagePayload parcelTrackingDataUpdatedMessagePayload = ParcelTrackingDataUpdatedMessagePayload.builder()
             .deliveryId("{deliveryId}")
             .parcelId("{parcelId}")
             .build()
 
  • Field Details

    • PARCEL_TRACKING_DATA_UPDATED

      static final String PARCEL_TRACKING_DATA_UPDATED
      discriminator value for ParcelTrackingDataUpdatedMessagePayload
      See Also:
  • Method Details

    • getDeliveryId

      @NotNull @NotNull String getDeliveryId()

      Unique identifier of the Delivery.

      Returns:
      deliveryId
    • getParcelId

      @NotNull @NotNull String getParcelId()

      Unique identifier of the Parcel.

      Returns:
      parcelId
    • getTrackingData

      @Valid @Valid TrackingData getTrackingData()

      The Tracking Data that was added to the Parcel.

      Returns:
      trackingData
    • getShippingKey

      String getShippingKey()

      User-defined unique identifier of the Shipping Method in a Cart with Multiple ShippingMode.

      Returns:
      shippingKey
    • setDeliveryId

      void setDeliveryId(String deliveryId)

      Unique identifier of the Delivery.

      Parameters:
      deliveryId - value to be set
    • setParcelId

      void setParcelId(String parcelId)

      Unique identifier of the Parcel.

      Parameters:
      parcelId - value to be set
    • setTrackingData

      void setTrackingData(TrackingData trackingData)

      The Tracking Data that was added to the Parcel.

      Parameters:
      trackingData - value to be set
    • setShippingKey

      void setShippingKey(String shippingKey)

      User-defined unique identifier of the Shipping Method in a Cart with Multiple ShippingMode.

      Parameters:
      shippingKey - value to be set
    • of

      factory method
      Returns:
      instance of ParcelTrackingDataUpdatedMessagePayload
    • of

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

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

      builder factory method for ParcelTrackingDataUpdatedMessagePayload
      Returns:
      builder
    • builder

      create builder for ParcelTrackingDataUpdatedMessagePayload instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withParcelTrackingDataUpdatedMessagePayload

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