Interface ProductStateTransitionMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after a successful Transition State update action.
Example to create an instance using the builder pattern
ProductStateTransitionMessagePayload productStateTransitionMessagePayload = ProductStateTransitionMessagePayload.builder()
.state(stateBuilder -> stateBuilder)
.force(true)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductStateTransitionMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductStateTransitionMessagePayloadbuilder
(ProductStateTransitionMessagePayload template) create builder for ProductStateTransitionMessagePayload instancedeepCopy
(ProductStateTransitionMessagePayload template) factory method to create a deep copy of ProductStateTransitionMessagePayload@NotNull Boolean
getForce()
Whether State transition validations were turned off during the Transition State update action.@NotNull @Valid StateReference
getState()
Product State after the Transition State update action.of()
factory methodof
(ProductStateTransitionMessagePayload template) factory method to create a shallow copy ProductStateTransitionMessagePayloadvoid
Whether State transition validations were turned off during the Transition State update action.void
setState
(StateReference state) Product State after the Transition State update action.static com.fasterxml.jackson.core.type.TypeReference<ProductStateTransitionMessagePayload>
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
-
PRODUCT_STATE_TRANSITION
discriminator value for ProductStateTransitionMessagePayload- See Also:
-
-
Method Details
-
getState
Product State after the Transition State update action.
- Returns:
- state
-
getForce
Whether State transition validations were turned off during the Transition State update action.
- Returns:
- force
-
setState
Product State after the Transition State update action.
- Parameters:
state
- value to be set
-
setForce
Whether State transition validations were turned off during the Transition State update action.
- Parameters:
force
- value to be set
-
of
factory method- Returns:
- instance of ProductStateTransitionMessagePayload
-
of
factory method to create a shallow copy ProductStateTransitionMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductStateTransitionMessagePayload deepCopy(@Nullable ProductStateTransitionMessagePayload template) factory method to create a deep copy of ProductStateTransitionMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductStateTransitionMessagePayload- Returns:
- builder
-
builder
static ProductStateTransitionMessagePayloadBuilder builder(ProductStateTransitionMessagePayload template) create builder for ProductStateTransitionMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductStateTransitionMessagePayload
default <T> T withProductStateTransitionMessagePayload(Function<ProductStateTransitionMessagePayload, 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<ProductStateTransitionMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-