Interface DeliveryFailureMessageInfo
-
- All Superinterfaces:
MessageInfo
- All Known Subinterfaces:
DeliveryFailureMessageReceivedEvent
public interface DeliveryFailureMessageInfo extends MessageInfo
ADeliveryFailureMessageInfo
object provides information about a delivery failure message.- Since:
- 11.27
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeliveryFailureMessage
getDeliveryFailureMessage()
Account
getIncomingAccount()
Channel
getIncomingChannel()
java.util.Optional<Category>
getSentTicketCategory()
java.util.Optional<java.lang.Long>
getSentTicketID()
-
Methods inherited from interface com.novomind.ecom.api.imail.model.MessageInfo
getTicketId
-
-
-
-
Method Detail
-
getSentTicketID
java.util.Optional<java.lang.Long> getSentTicketID()
- Returns:
- an
Optional
with the sent ticket id that caused this deliver failure message, or an emptyOptional
if no sent ticket could be found. - Since:
- 11.27
-
getSentTicketCategory
java.util.Optional<Category> getSentTicketCategory()
- Returns:
- an
Optional
with the category of the sent ticket that caused this deliver failure message, or an emptyOptional
if no sent ticket could be found. - Since:
- 12.40
-
getDeliveryFailureMessage
DeliveryFailureMessage getDeliveryFailureMessage()
- Returns:
- the delivery failure message
- Since:
- 11.27
-
getIncomingAccount
Account getIncomingAccount()
- Returns:
- the incoming account of the message.
- Since:
- 11.27
-
getIncomingChannel
Channel getIncomingChannel()
- Returns:
- the incoming channel of the message.
- Since:
- 11.27
-
-