Interface StagedQuoteStateTransitionMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
Generated after a successful Transition State update action.
Example to create an instance using the builder pattern
StagedQuoteStateTransitionMessage stagedQuoteStateTransitionMessage = StagedQuoteStateTransitionMessage.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)
.state(stateBuilder -> stateBuilder)
.force(true)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for StagedQuoteStateTransitionMessage -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for StagedQuoteStateTransitionMessagebuilder
(StagedQuoteStateTransitionMessage template) create builder for StagedQuoteStateTransitionMessage instancedeepCopy
(StagedQuoteStateTransitionMessage template) factory method to create a deep copy of StagedQuoteStateTransitionMessage@NotNull Boolean
getForce()
Whether State transition validations were turned off during the Transition State update action.@Valid StateReference
State of the Quote before the Transition State update action.@NotNull @Valid StateReference
getState()
State of the Quote after the Transition State update action.of()
factory methodof
(StagedQuoteStateTransitionMessage template) factory method to create a shallow copy StagedQuoteStateTransitionMessagevoid
Whether State transition validations were turned off during the Transition State update action.void
setOldState
(StateReference oldState) State of the Quote before the Transition State update action.void
setState
(StateReference state) State of the Quote after the Transition State update action.static com.fasterxml.jackson.core.type.TypeReference<StagedQuoteStateTransitionMessage>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.BaseResource
withBaseResource
Methods inherited from interface com.commercetools.api.models.DomainResource
get
Methods 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
-
STAGED_QUOTE_STATE_TRANSITION
discriminator value for StagedQuoteStateTransitionMessage- 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 StagedQuoteStateTransitionMessage
-
of
factory method to create a shallow copy StagedQuoteStateTransitionMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static StagedQuoteStateTransitionMessage deepCopy(@Nullable StagedQuoteStateTransitionMessage template) factory method to create a deep copy of StagedQuoteStateTransitionMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedQuoteStateTransitionMessage- Returns:
- builder
-
builder
create builder for StagedQuoteStateTransitionMessage instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withStagedQuoteStateTransitionMessage
default <T> T withStagedQuoteStateTransitionMessage(Function<StagedQuoteStateTransitionMessage, 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<StagedQuoteStateTransitionMessage> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-