Interface ProductTailoringUnpublishedMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
Generated after a successful Product Tailoring Unpublish update action.
Example to create an instance using the builder pattern
ProductTailoringUnpublishedMessage productTailoringUnpublishedMessage = ProductTailoringUnpublishedMessage.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)
.store(storeBuilder -> storeBuilder)
.product(productBuilder -> productBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductTailoringUnpublishedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductTailoringUnpublishedMessagebuilder
(ProductTailoringUnpublishedMessage template) create builder for ProductTailoringUnpublishedMessage instancedeepCopy
(ProductTailoringUnpublishedMessage template) factory method to create a deep copy of ProductTailoringUnpublishedMessage@NotNull @Valid ProductReference
Reference to the Product the Product Tailoring belongs to.User-defined unique identifier of the Product this Product Tailoring belongs to.@NotNull @Valid StoreKeyReference
getStore()
The Store to which the Product Tailoring belongs.of()
factory methodof
(ProductTailoringUnpublishedMessage template) factory method to create a shallow copy ProductTailoringUnpublishedMessagevoid
setProduct
(ProductReference product) Reference to the Product the Product Tailoring belongs to.void
setProductKey
(String productKey) User-defined unique identifier of the Product this Product Tailoring belongs to.void
setStore
(StoreKeyReference store) The Store to which the Product Tailoring belongs.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringUnpublishedMessage>
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
-
Field Details
-
PRODUCT_TAILORING_UNPUBLISHED
discriminator value for ProductTailoringUnpublishedMessage- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()User-defined unique identifier of the Product this Product Tailoring belongs to.
- Returns:
- productKey
-
getProduct
Reference to the Product the Product Tailoring belongs to.
- Returns:
- product
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store
- value to be set
-
setProductKey
User-defined unique identifier of the Product this Product Tailoring belongs to.
- Parameters:
productKey
- value to be set
-
setProduct
Reference to the Product the Product Tailoring belongs to.
- Parameters:
product
- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringUnpublishedMessage
-
of
factory method to create a shallow copy ProductTailoringUnpublishedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductTailoringUnpublishedMessage deepCopy(@Nullable ProductTailoringUnpublishedMessage template) factory method to create a deep copy of ProductTailoringUnpublishedMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringUnpublishedMessage- Returns:
- builder
-
builder
static ProductTailoringUnpublishedMessageBuilder builder(ProductTailoringUnpublishedMessage template) create builder for ProductTailoringUnpublishedMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringUnpublishedMessage
default <T> T withProductTailoringUnpublishedMessage(Function<ProductTailoringUnpublishedMessage, 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<ProductTailoringUnpublishedMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-