Interface ProductPriceRemovedMessage
- All Superinterfaces:
BaseResource,DomainResource<Message>,Identifiable<Message>,Message,Versioned<Message>
Generated after a successful Remove Price update action.
Example to create an instance using the builder pattern
ProductPriceRemovedMessage productPriceRemovedMessage = ProductPriceRemovedMessage.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)
.variantId(0.3)
.price(priceBuilder -> priceBuilder)
.staged(true)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductPriceRemovedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductPriceRemovedMessagebuilder(ProductPriceRemovedMessage template) create builder for ProductPriceRemovedMessage instancecopyDeep()static ProductPriceRemovedMessagedeepCopy(ProductPriceRemovedMessage template) factory method to create a deep copy of ProductPriceRemovedMessage@NotNull @Valid PricegetPrice()The Embedded Price that was removed from the ProductVariant.@NotNull BooleanWhether the update was only applied to the staged Product Projection.@NotNull LongUnique identifier of the ProductVariant for which the Price was removed.static ProductPriceRemovedMessageof()factory methodstatic ProductPriceRemovedMessageof(ProductPriceRemovedMessage template) factory method to create a shallow copy ProductPriceRemovedMessagevoidThe Embedded Price that was removed from the ProductVariant.voidWhether the update was only applied to the staged Product Projection.voidsetVariantId(Long variantId) Unique identifier of the ProductVariant for which the Price was removed.static com.fasterxml.jackson.core.type.TypeReference<ProductPriceRemovedMessage>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, withMessage
-
Field Details
-
PRODUCT_PRICE_REMOVED
discriminator value for ProductPriceRemovedMessage- See Also:
-
-
Method Details
-
getVariantId
Unique identifier of the ProductVariant for which the Price was removed.
- Returns:
- variantId
-
getPrice
The Embedded Price that was removed from the ProductVariant.
- Returns:
- price
-
getStaged
Whether the update was only applied to the staged Product Projection.
- Returns:
- staged
-
setVariantId
Unique identifier of the ProductVariant for which the Price was removed.
- Parameters:
variantId- value to be set
-
setPrice
The Embedded Price that was removed from the ProductVariant.
- Parameters:
price- value to be set
-
setStaged
Whether the update was only applied to the staged Product Projection.
- Parameters:
staged- value to be set
-
of
factory method- Returns:
- instance of ProductPriceRemovedMessage
-
of
factory method to create a shallow copy ProductPriceRemovedMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductPriceRemovedMessage copyDeep()- Specified by:
copyDeepin interfaceBaseResource- Specified by:
copyDeepin interfaceMessage
-
deepCopy
factory method to create a deep copy of ProductPriceRemovedMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductPriceRemovedMessage- Returns:
- builder
-
builder
create builder for ProductPriceRemovedMessage instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductPriceRemovedMessage
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-