Interface ShoppingListMessage
- All Superinterfaces:
BaseResource
,DomainResource<Message>
,Identifiable<Message>
,Message
,Versioned<Message>
- All Known Subinterfaces:
ShoppingListLineItemAddedMessage
,ShoppingListLineItemRemovedMessage
ShoppingListMessage
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ShoppingListMessage shoppingListMessage = ShoppingListMessage.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)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic ShoppingListMessage
deepCopy
(ShoppingListMessage template) factory method to create a deep copy of ShoppingListMessagestatic com.fasterxml.jackson.core.type.TypeReference<ShoppingListMessage>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withShoppingListMessage
(Function<ShoppingListMessage, T> helper) 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
-
Method Details
-
deepCopy
factory method to create a deep copy of ShoppingListMessage- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
withShoppingListMessage
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-