Interface ProductVariantTailoringRemovedMessage
- All Superinterfaces:
BaseResource,DomainResource<Message>,Identifiable<Message>,Message,Versioned<Message>
Generated after a successful Remove ProductVariant Tailoring update action.
Example to create an instance using the builder pattern
ProductVariantTailoringRemovedMessage productVariantTailoringRemovedMessage = ProductVariantTailoringRemovedMessage.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)
.variantId(1)
.variant(variantBuilder -> variantBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductVariantTailoringRemovedMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductVariantTailoringRemovedMessagebuilder(ProductVariantTailoringRemovedMessage template) create builder for ProductVariantTailoringRemovedMessage instancecopyDeep()factory method to create a deep copy of ProductVariantTailoringRemovedMessage@NotNull @Valid ProductReferenceReference to the Product the Product Tailoring belongs to.keyof the tailored Product.@NotNull @Valid StoreKeyReferencegetStore()The Store to which the Product Tailoring belongs.@NotNull @Valid ProductVariantTailoringThe ProductVariantTailoring that was removed from the ProductTailoring.@NotNull Longidof the ProductVariant removed from the Tailoring.of()factory methodof(ProductVariantTailoringRemovedMessage template) factory method to create a shallow copy ProductVariantTailoringRemovedMessagevoidsetProduct(ProductReference product) Reference to the Product the Product Tailoring belongs to.voidsetProductKey(String productKey) keyof the tailored Product.voidsetStore(StoreKeyReference store) The Store to which the Product Tailoring belongs.voidsetVariant(ProductVariantTailoring variant) The ProductVariantTailoring that was removed from the ProductTailoring.voidsetVariantId(Long variantId) idof the ProductVariant removed from the Tailoring.static com.fasterxml.jackson.core.type.TypeReference<ProductVariantTailoringRemovedMessage>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_VARIANT_TAILORING_REMOVED
discriminator value for ProductVariantTailoringRemovedMessage- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()keyof the tailored Product.- Returns:
- productKey
-
getProduct
Reference to the Product the Product Tailoring belongs to.
- Returns:
- product
-
getVariantId
idof the ProductVariant removed from the Tailoring.- Returns:
- variantId
-
getVariant
The ProductVariantTailoring that was removed from the ProductTailoring.
- Returns:
- variant
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store- value to be set
-
setProductKey
keyof the tailored Product.- Parameters:
productKey- value to be set
-
setProduct
Reference to the Product the Product Tailoring belongs to.
- Parameters:
product- value to be set
-
setVariantId
idof the ProductVariant removed from the Tailoring.- Parameters:
variantId- value to be set
-
setVariant
The ProductVariantTailoring that was removed from the ProductTailoring.
- Parameters:
variant- value to be set
-
of
factory method- Returns:
- instance of ProductVariantTailoringRemovedMessage
-
of
factory method to create a shallow copy ProductVariantTailoringRemovedMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductVariantTailoringRemovedMessage copyDeep()- Specified by:
copyDeepin interfaceBaseResource- Specified by:
copyDeepin interfaceMessage
-
deepCopy
@Nullable static ProductVariantTailoringRemovedMessage deepCopy(@Nullable ProductVariantTailoringRemovedMessage template) factory method to create a deep copy of ProductVariantTailoringRemovedMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductVariantTailoringRemovedMessage- Returns:
- builder
-
builder
static ProductVariantTailoringRemovedMessageBuilder builder(ProductVariantTailoringRemovedMessage template) create builder for ProductVariantTailoringRemovedMessage instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductVariantTailoringRemovedMessage
default <T> T withProductVariantTailoringRemovedMessage(Function<ProductVariantTailoringRemovedMessage, 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<ProductVariantTailoringRemovedMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-