Interface ProductTailoringNameSetMessage
- All Superinterfaces:
BaseResource,DomainResource<Message>,Identifiable<Message>,Message,Versioned<Message>
Generated after a successful Product Tailoring Set Name update action.
Example to create an instance using the builder pattern
ProductTailoringNameSetMessage productTailoringNameSetMessage = ProductTailoringNameSetMessage.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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductTailoringNameSetMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductTailoringNameSetMessagebuilder(ProductTailoringNameSetMessage template) create builder for ProductTailoringNameSetMessage instancecopyDeep()deepCopy(ProductTailoringNameSetMessage template) factory method to create a deep copy of ProductTailoringNameSetMessage@Valid LocalizedStringgetName()The name of the Product Tailoring after the Set Name update action.@Valid LocalizedStringThe name of the ProductTailoring before the Set Name update action.@NotNull @Valid ProductReferenceReference to the Product the Product Tailoring belongs to.User-defined unique identifier of the Product this Product Tailoring belongs to.@NotNull @Valid StoreKeyReferencegetStore()The Store to which the Product Tailoring belongs.of()factory methodof(ProductTailoringNameSetMessage template) factory method to create a shallow copy ProductTailoringNameSetMessagevoidsetName(LocalizedString name) The name of the Product Tailoring after the Set Name update action.voidsetOldName(LocalizedString oldName) The name of the ProductTailoring before the Set Name update action.voidsetProduct(ProductReference product) Reference to the Product the Product Tailoring belongs to.voidsetProductKey(String productKey) User-defined unique identifier of the Product this Product Tailoring belongs to.voidsetStore(StoreKeyReference store) The Store to which the Product Tailoring belongs.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringNameSetMessage>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_TAILORING_NAME_SET
discriminator value for ProductTailoringNameSetMessage- 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
-
getName
The name of the Product Tailoring after the Set Name update action.
- Returns:
- name
-
getOldName
The name of the ProductTailoring before the Set Name update action.
- Returns:
- oldName
-
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
-
setName
The name of the Product Tailoring after the Set Name update action.
- Parameters:
name- value to be set
-
setOldName
The name of the ProductTailoring before the Set Name update action.
- Parameters:
oldName- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringNameSetMessage
-
of
factory method to create a shallow copy ProductTailoringNameSetMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductTailoringNameSetMessage copyDeep()- Specified by:
copyDeepin interfaceBaseResource- Specified by:
copyDeepin interfaceMessage
-
deepCopy
@Nullable static ProductTailoringNameSetMessage deepCopy(@Nullable ProductTailoringNameSetMessage template) factory method to create a deep copy of ProductTailoringNameSetMessage- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringNameSetMessage- Returns:
- builder
-
builder
create builder for ProductTailoringNameSetMessage instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringNameSetMessage
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<ProductTailoringNameSetMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-