Interface ApprovalRuleNameSetMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Set Name update action.
Example to create an instance using the builder pattern
ApprovalRuleNameSetMessagePayload approvalRuleNameSetMessagePayload = ApprovalRuleNameSetMessagePayload.builder()
.name("{name}")
.oldName("{oldName}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ApprovalRuleNameSetMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ApprovalRuleNameSetMessagePayloadbuilder
(ApprovalRuleNameSetMessagePayload template) create builder for ApprovalRuleNameSetMessagePayload instancedeepCopy
(ApprovalRuleNameSetMessagePayload template) factory method to create a deep copy of ApprovalRuleNameSetMessagePayload@NotNull String
getName()
Name of the ApprovalRule after the Set Name update action.@NotNull String
Name of the ApprovalRule before the Set Name update action.of()
factory methodof
(ApprovalRuleNameSetMessagePayload template) factory method to create a shallow copy ApprovalRuleNameSetMessagePayloadvoid
Name of the ApprovalRule after the Set Name update action.void
setOldName
(String oldName) Name of the ApprovalRule before the Set Name update action.static com.fasterxml.jackson.core.type.TypeReference<ApprovalRuleNameSetMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
APPROVAL_RULE_NAME_SET
discriminator value for ApprovalRuleNameSetMessagePayload- See Also:
-
-
Method Details
-
getName
Name of the ApprovalRule after the Set Name update action.
- Returns:
- name
-
getOldName
Name of the ApprovalRule before the Set Name update action.
- Returns:
- oldName
-
setName
Name of the ApprovalRule after the Set Name update action.
- Parameters:
name
- value to be set
-
setOldName
Name of the ApprovalRule before the Set Name update action.
- Parameters:
oldName
- value to be set
-
of
factory method- Returns:
- instance of ApprovalRuleNameSetMessagePayload
-
of
factory method to create a shallow copy ApprovalRuleNameSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ApprovalRuleNameSetMessagePayload deepCopy(@Nullable ApprovalRuleNameSetMessagePayload template) factory method to create a deep copy of ApprovalRuleNameSetMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ApprovalRuleNameSetMessagePayload- Returns:
- builder
-
builder
create builder for ApprovalRuleNameSetMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withApprovalRuleNameSetMessagePayload
default <T> T withApprovalRuleNameSetMessagePayload(Function<ApprovalRuleNameSetMessagePayload, 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<ApprovalRuleNameSetMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-