Interface ParcelMeasurementsUpdatedMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,OrderMessage
,Versioned<Message>
Generated after a successful Set Parcel Measurements update action.
Example to create an instance using the builder pattern
ParcelMeasurementsUpdatedMessage parcelMeasurementsUpdatedMessage = ParcelMeasurementsUpdatedMessage.builder()
.id("{id}")
.version(0.3)
.createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.sequenceNumber(0.3)
.resource(resourceBuilder -> resourceBuilder)
.resourceVersion(0.3)
.deliveryId("{deliveryId}")
.parcelId("{parcelId}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ParcelMeasurementsUpdatedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ParcelMeasurementsUpdatedMessagebuilder
(ParcelMeasurementsUpdatedMessage template) create builder for ParcelMeasurementsUpdatedMessage instancedeepCopy
(ParcelMeasurementsUpdatedMessage template) factory method to create a deep copy of ParcelMeasurementsUpdatedMessage@NotNull String
Unique identifier of the Delivery.@Valid ParcelMeasurements
The Parcel Measurements that were set on the Parcel.@NotNull String
Unique identifier of the Parcel.User-defined unique identifier of the Shipping Method in a Cart withMultiple
ShippingMode.of()
factory methodof
(ParcelMeasurementsUpdatedMessage template) factory method to create a shallow copy ParcelMeasurementsUpdatedMessagevoid
setDeliveryId
(String deliveryId) Unique identifier of the Delivery.void
setMeasurements
(ParcelMeasurements measurements) The Parcel Measurements that were set on the Parcel.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.static com.fasterxml.jackson.core.type.TypeReference<ParcelMeasurementsUpdatedMessage>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.BaseResource
withBaseResource
Methods inherited from interface com.commercetools.api.models.DomainResource
get
Methods inherited from interface com.commercetools.api.models.message.Message
getCreatedAt, getCreatedBy, getId, getLastModifiedAt, getLastModifiedBy, getResource, getResourceUserProvidedIdentifiers, getResourceVersion, getSequenceNumber, getType, getVersion, setCreatedAt, setCreatedBy, setId, setLastModifiedAt, setLastModifiedBy, setResource, setResourceUserProvidedIdentifiers, setResourceVersion, setSequenceNumber, setVersion, withMessage
Methods inherited from interface com.commercetools.api.models.message.OrderMessage
withOrderMessage
-
Field Details
-
PARCEL_MEASUREMENTS_UPDATED
discriminator value for ParcelMeasurementsUpdatedMessage- See Also:
-
-
Method Details
-
getDeliveryId
Unique identifier of the Delivery.
- Returns:
- deliveryId
-
getParcelId
Unique identifier of the Parcel.
- Returns:
- parcelId
-
getMeasurements
The Parcel Measurements that were set on the Parcel.
- Returns:
- measurements
-
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
-
setMeasurements
The Parcel Measurements that were set on the Parcel.
- Parameters:
measurements
- 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 ParcelMeasurementsUpdatedMessage
-
of
factory method to create a shallow copy ParcelMeasurementsUpdatedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ParcelMeasurementsUpdatedMessage deepCopy(@Nullable ParcelMeasurementsUpdatedMessage template) factory method to create a deep copy of ParcelMeasurementsUpdatedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ParcelMeasurementsUpdatedMessage- Returns:
- builder
-
builder
create builder for ParcelMeasurementsUpdatedMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withParcelMeasurementsUpdatedMessage
default <T> T withParcelMeasurementsUpdatedMessage(Function<ParcelMeasurementsUpdatedMessage, 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<ParcelMeasurementsUpdatedMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-