Interface StagedQuoteStateTransitionMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after a successful Transition State update action.
Example to create an instance using the builder pattern
StagedQuoteStateTransitionMessagePayload stagedQuoteStateTransitionMessagePayload = StagedQuoteStateTransitionMessagePayload.builder()
.state(stateBuilder -> stateBuilder)
.force(true)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for StagedQuoteStateTransitionMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for StagedQuoteStateTransitionMessagePayloadcreate builder for StagedQuoteStateTransitionMessagePayload instancecopyDeep()factory method to create a deep copy of StagedQuoteStateTransitionMessagePayload@NotNull BooleangetForce()Whether State transition validations were turned off during the Transition State update action.@Valid StateReference@NotNull @Valid StateReferencegetState()of()factory methodof(StagedQuoteStateTransitionMessagePayload template) factory method to create a shallow copy StagedQuoteStateTransitionMessagePayloadvoidWhether State transition validations were turned off during the Transition State update action.voidsetOldState(StateReference oldState) voidsetState(StateReference state) static com.fasterxml.jackson.core.type.TypeReference<StagedQuoteStateTransitionMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithStagedQuoteStateTransitionMessagePayload(Function<StagedQuoteStateTransitionMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
STAGED_QUOTE_STATE_TRANSITION
discriminator value for StagedQuoteStateTransitionMessagePayload- See Also:
-
-
Method Details
-
getState
State of the Quote after the Transition State update action.
- Returns:
- state
-
getOldState
State of the Quote before the Transition State update action.
- Returns:
- oldState
-
getForce
Whether State transition validations were turned off during the Transition State update action.
- Returns:
- force
-
setState
State of the Quote after the Transition State update action.
- Parameters:
state- value to be set
-
setOldState
State of the Quote before the Transition State update action.
- Parameters:
oldState- 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 StagedQuoteStateTransitionMessagePayload
-
of
static StagedQuoteStateTransitionMessagePayload of(StagedQuoteStateTransitionMessagePayload template) factory method to create a shallow copy StagedQuoteStateTransitionMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
StagedQuoteStateTransitionMessagePayload copyDeep()- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static StagedQuoteStateTransitionMessagePayload deepCopy(@Nullable StagedQuoteStateTransitionMessagePayload template) factory method to create a deep copy of StagedQuoteStateTransitionMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedQuoteStateTransitionMessagePayload- Returns:
- builder
-
builder
static StagedQuoteStateTransitionMessagePayloadBuilder builder(StagedQuoteStateTransitionMessagePayload template) create builder for StagedQuoteStateTransitionMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withStagedQuoteStateTransitionMessagePayload
default <T> T withStagedQuoteStateTransitionMessagePayload(Function<StagedQuoteStateTransitionMessagePayload, 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<StagedQuoteStateTransitionMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-