public class NexmoUndeliverableEvent extends NexmoEvent
Represents an undeliverable receipt for an event, available for NexmoMessageEvent
.
An Undeliverable receipt event is automatically sent if the message cannot be delivered to the recipient.
Retrieve undeliverable events from conversation:
conversation.getEvents(100, NexmoPageOrder.NexmoMPageOrderAsc, null, new NexmoRequestListener() { @Override public void onSuccess(@Nullable NexmoEventsPage eventsPage) { for (NexmoEvent event : eventsPage.getData()) { if (event instanceof NexmoUndeliverableEvent) { // undeliverable event } } } @Override public void onError(@NonNull NexmoApiError apiError) { } });
Modifier and Type | Field and Description |
---|---|
static android.os.Parcelable.Creator<NexmoUndeliverableEvent> |
CREATOR |
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
boolean |
equals(java.lang.Object o) |
int |
hashCode() |
java.lang.Integer |
initialEventId()
Gets the Event for which this Undeliverable Receipt has been emitted.
|
java.lang.String |
toString() |
void |
writeToParcel(android.os.Parcel dest,
int flags) |
getConversation, getConversationId, getCreationDate, getEmbeddedInfo, getEventType, getFromMemberId, getId, markEventState, updateEventState
public static final android.os.Parcelable.Creator<NexmoUndeliverableEvent> CREATOR
public final java.lang.Integer initialEventId()
public java.lang.String toString()
toString
in class NexmoEvent
public boolean equals(java.lang.Object o)
equals
in class NexmoEvent
public int hashCode()
hashCode
in class NexmoEvent
public int describeContents()
describeContents
in interface android.os.Parcelable
describeContents
in class NexmoEvent
public void writeToParcel(android.os.Parcel dest, int flags)
writeToParcel
in interface android.os.Parcelable
writeToParcel
in class NexmoEvent