deleteMessage

abstract fun deleteMessage(@NonNull message: InboxMessage)

Marks a InboxMessage as deleted in local storage. This will prevent the message from being shown in the future unless local storage is cleared on the device.

Parameters

message

is the InboxMessage to mark as deleted.


abstract fun deleteMessage(@NonNull messageId: String)

Marks a InboxMessage as deleted in local storage. This will prevent the message from being shown in the future unless local storage is cleared on the device.

Parameters

messageId

is the id of the InboxMessage to mark as deleted.