Interface ProductTailoringImagesSetMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
Generated after a successful Set Images update action.
Example to create an instance using the builder pattern
ProductTailoringImagesSetMessage productTailoringImagesSetMessage = ProductTailoringImagesSetMessage.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(0.3)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductTailoringImagesSetMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductTailoringImagesSetMessagebuilder
(ProductTailoringImagesSetMessage template) create builder for ProductTailoringImagesSetMessage instancedeepCopy
(ProductTailoringImagesSetMessage template) factory method to create a deep copy of ProductTailoringImagesSetMessageImages on the tailored Product Variant after the Set Images update action.Images on the tailored Product Variant before the Set Images update action.@NotNull @Valid ProductReference
Reference to the Product the Product Tailoring belongs to.key
of the tailored Product.@NotNull @Valid StoreKeyReference
getStore()
The Store to which the Product Tailoring belongs.@NotNull Long
id
of the tailored Product Variant.of()
factory methodof
(ProductTailoringImagesSetMessage template) factory method to create a shallow copy ProductTailoringImagesSetMessagevoid
Images on the tailored Product Variant after the Set Images update action.void
Images on the tailored Product Variant after the Set Images update action.void
setOldImages
(Image... oldImages) Images on the tailored Product Variant before the Set Images update action.void
setOldImages
(List<Image> oldImages) Images on the tailored Product Variant before the Set Images update action.void
setProduct
(ProductReference product) Reference to the Product the Product Tailoring belongs to.void
setProductKey
(String productKey) key
of the tailored Product.void
setStore
(StoreKeyReference store) The Store to which the Product Tailoring belongs.void
setVariantId
(Long variantId) id
of the tailored Product Variant.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringImagesSetMessage>
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_IMAGES_SET
discriminator value for ProductTailoringImagesSetMessage- See Also:
-
-
Method Details
-
getStore
The Store to which the Product Tailoring belongs.
- Returns:
- store
-
getProductKey
String getProductKey()key
of the tailored Product.- Returns:
- productKey
-
getProduct
Reference to the Product the Product Tailoring belongs to.
- Returns:
- product
-
getVariantId
id
of the tailored Product Variant.- Returns:
- variantId
-
getOldImages
Images on the tailored Product Variant before the Set Images update action.
- Returns:
- oldImages
-
getImages
Images on the tailored Product Variant after the Set Images update action.
- Returns:
- images
-
setStore
The Store to which the Product Tailoring belongs.
- Parameters:
store
- value to be set
-
setProductKey
key
of 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
id
of the tailored Product Variant.- Parameters:
variantId
- value to be set
-
setOldImages
Images on the tailored Product Variant before the Set Images update action.
- Parameters:
oldImages
- values to be set
-
setOldImages
Images on the tailored Product Variant before the Set Images update action.
- Parameters:
oldImages
- values to be set
-
setImages
Images on the tailored Product Variant after the Set Images update action.
- Parameters:
images
- values to be set
-
setImages
Images on the tailored Product Variant after the Set Images update action.
- Parameters:
images
- values to be set
-
of
factory method- Returns:
- instance of ProductTailoringImagesSetMessage
-
of
factory method to create a shallow copy ProductTailoringImagesSetMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductTailoringImagesSetMessage deepCopy(@Nullable ProductTailoringImagesSetMessage template) factory method to create a deep copy of ProductTailoringImagesSetMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringImagesSetMessage- Returns:
- builder
-
builder
create builder for ProductTailoringImagesSetMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringImagesSetMessage
default <T> T withProductTailoringImagesSetMessage(Function<ProductTailoringImagesSetMessage, 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<ProductTailoringImagesSetMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-