Interface ParcelTrackingDataUpdatedMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin,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 Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ParcelTrackingDataUpdatedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ParcelTrackingDataUpdatedMessagePayloadcreate builder for ParcelTrackingDataUpdatedMessagePayload instancecopyDeep()factory method to create a deep copy of ParcelTrackingDataUpdatedMessagePayload@NotNull StringUnique identifier of the Delivery.@NotNull StringUnique identifier of the Parcel.User-defined unique identifier of the Shipping Method in a Cart withMultipleShippingMode.@Valid TrackingDataThe Tracking Data that was added to the Parcel.of()factory methodof(ParcelTrackingDataUpdatedMessagePayload template) factory method to create a shallow copy ParcelTrackingDataUpdatedMessagePayloadvoidsetDeliveryId(String deliveryId) Unique identifier of the Delivery.voidsetParcelId(String parcelId) Unique identifier of the Parcel.voidsetShippingKey(String shippingKey) User-defined unique identifier of the Shipping Method in a Cart withMultipleShippingMode.voidsetTrackingData(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> TwithParcelTrackingDataUpdatedMessagePayload(Function<ParcelTrackingDataUpdatedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
asMethods 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
MultipleShippingMode.- 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
MultipleShippingMode.- 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
-
copyDeep
ParcelTrackingDataUpdatedMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload- Specified by:
copyDeepin interfaceOrderMessagePayload
-
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
-