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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ParcelMeasurementsUpdatedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ParcelMeasurementsUpdatedMessagebuilder(ParcelMeasurementsUpdatedMessage template) create builder for ParcelMeasurementsUpdatedMessage instancecopyDeep()deepCopy(ParcelMeasurementsUpdatedMessage template) factory method to create a deep copy of ParcelMeasurementsUpdatedMessage@NotNull StringUnique identifier of the Delivery.@Valid ParcelMeasurementsThe Parcel Measurements that were set on the Parcel.@NotNull StringUnique identifier of the Parcel.User-defined unique identifier of the Shipping Method in a Cart withMultipleShippingMode.of()factory methodof(ParcelMeasurementsUpdatedMessage template) factory method to create a shallow copy ParcelMeasurementsUpdatedMessagevoidsetDeliveryId(String deliveryId) Unique identifier of the Delivery.voidsetMeasurements(ParcelMeasurements measurements) The Parcel Measurements that were set on the Parcel.voidsetParcelId(String parcelId) Unique identifier of the Parcel.voidsetShippingKey(String shippingKey) User-defined unique identifier of the Shipping Method in a Cart withMultipleShippingMode.static com.fasterxml.jackson.core.type.TypeReference<ParcelMeasurementsUpdatedMessage>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.common.BaseResource
withBaseResourceMethods inherited from interface com.commercetools.api.models.DomainResource
getMethods 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, withMessageMethods 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
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
-
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
MultipleShippingMode.- 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
-
copyDeep
ParcelMeasurementsUpdatedMessage copyDeep()- Specified by:
copyDeepin interfaceBaseResource- Specified by:
copyDeepin interfaceMessage- Specified by:
copyDeepin interfaceOrderMessage
-
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
-