Interface ParcelTrackingDataUpdatedMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
,OrderMessagePayload
- All Known Implementing Classes:
ParcelTrackingDataUpdatedMessagePayloadImpl
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 Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ParcelTrackingDataUpdatedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ParcelTrackingDataUpdatedMessagePayloadcreate builder for ParcelTrackingDataUpdatedMessagePayload instancefactory method to create a deep copy of ParcelTrackingDataUpdatedMessagePayload@NotNull String
Unique identifier of the Delivery.@NotNull String
Unique identifier of the Parcel.User-defined unique identifier of the Shipping Method in a Cart withMultiple
ShippingMode.@Valid TrackingData
The Tracking Data that was added to the Parcel.of()
factory methodof
(ParcelTrackingDataUpdatedMessagePayload template) factory method to create a shallow copy ParcelTrackingDataUpdatedMessagePayloadvoid
setDeliveryId
(String deliveryId) Unique identifier of the Delivery.void
setParcelId
(String parcelId) Unique identifier of the Parcel.void
setShippingKey
(String shippingKey) User-defined unique identifier of the Shipping Method in a Cart withMultiple
ShippingMode.void
setTrackingData
(TrackingData trackingData) The Tracking Data that was added to the Parcel.static com.fasterxml.jackson.core.type.TypeReference<ParcelTrackingDataUpdatedMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withParcelTrackingDataUpdatedMessagePayload
(Function<ParcelTrackingDataUpdatedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
Methods inherited from interface com.commercetools.api.models.message.OrderMessagePayload
withOrderMessagePayload
-
Field Details
-
PARCEL_TRACKING_DATA_UPDATED
discriminator value for ParcelTrackingDataUpdatedMessagePayload- See Also:
-
-
Method Details
-
getDeliveryId
Unique identifier of the Delivery.
- Returns:
- deliveryId
-
getParcelId
Unique identifier of the Parcel.
- Returns:
- parcelId
-
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
Unique identifier of the Delivery.
- Parameters:
deliveryId
- value to be set
-
setParcelId
Unique identifier of the Parcel.
- Parameters:
parcelId
- value to be set
-
setTrackingData
The Tracking Data that was added to the Parcel.
- Parameters:
trackingData
- value to be set
-
setShippingKey
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
@Nullable static ParcelTrackingDataUpdatedMessagePayload deepCopy(@Nullable ParcelTrackingDataUpdatedMessagePayload template) 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
static ParcelTrackingDataUpdatedMessagePayloadBuilder builder(ParcelTrackingDataUpdatedMessagePayload template) 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
-