Interface BusinessUnitAssociateChangedMessagePayload
- All Superinterfaces:
- MessagePayload,- MessagePayloadMixin
Generated after a successful Change Associate update action.
Example to create an instance using the builder pattern
     BusinessUnitAssociateChangedMessagePayload businessUnitAssociateChangedMessagePayload = BusinessUnitAssociateChangedMessagePayload.builder()
             .associate(associateBuilder -> associateBuilder)
             .build()
 - 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for BusinessUnitAssociateChangedMessagePayload
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()builder factory method for BusinessUnitAssociateChangedMessagePayloadcreate builder for BusinessUnitAssociateChangedMessagePayload instancecopyDeep()factory method to create a deep copy of BusinessUnitAssociateChangedMessagePayload@NotNull @Valid AssociateThe Associate that was updated.of()factory methodof(BusinessUnitAssociateChangedMessagePayload template) factory method to create a shallow copy BusinessUnitAssociateChangedMessagePayloadvoidsetAssociate(Associate associate) The Associate that was updated.static com.fasterxml.jackson.core.type.TypeReference<BusinessUnitAssociateChangedMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithBusinessUnitAssociateChangedMessagePayload(Function<BusinessUnitAssociateChangedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayloadgetType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixinas
- 
Field Details- 
BUSINESS_UNIT_ASSOCIATE_CHANGEDdiscriminator value for BusinessUnitAssociateChangedMessagePayload- See Also:
 
 
- 
- 
Method Details- 
getAssociateThe Associate that was updated. - Returns:
- associate
 
- 
setAssociateThe Associate that was updated. - Parameters:
- associate- value to be set
 
- 
offactory method- Returns:
- instance of BusinessUnitAssociateChangedMessagePayload
 
- 
ofstatic BusinessUnitAssociateChangedMessagePayload of(BusinessUnitAssociateChangedMessagePayload template) factory method to create a shallow copy BusinessUnitAssociateChangedMessagePayload- Parameters:
- template- instance to be copied
- Returns:
- copy instance
 
- 
copyDeepBusinessUnitAssociateChangedMessagePayload copyDeep()- Specified by:
- copyDeepin interface- MessagePayload
 
- 
deepCopy@Nullable static BusinessUnitAssociateChangedMessagePayload deepCopy(@Nullable BusinessUnitAssociateChangedMessagePayload template) factory method to create a deep copy of BusinessUnitAssociateChangedMessagePayload- Parameters:
- template- instance to be copied
- Returns:
- copy instance
 
- 
builderbuilder factory method for BusinessUnitAssociateChangedMessagePayload- Returns:
- builder
 
- 
builderstatic BusinessUnitAssociateChangedMessagePayloadBuilder builder(BusinessUnitAssociateChangedMessagePayload template) create builder for BusinessUnitAssociateChangedMessagePayload instance- Parameters:
- template- instance with prefilled values for the builder
- Returns:
- builder
 
- 
withBusinessUnitAssociateChangedMessagePayloaddefault <T> T withBusinessUnitAssociateChangedMessagePayload(Function<BusinessUnitAssociateChangedMessagePayload, T> helper) accessor map function- Type Parameters:
- T- mapped type
- Parameters:
- helper- function to map the object
- Returns:
- mapped value
 
- 
typeReferencestatic com.fasterxml.jackson.core.type.TypeReference<BusinessUnitAssociateChangedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
 
 
-