retryEntry

abstract suspend fun retryEntry(conversationEntry: ConversationEntry, preChatFields: List<PreChatField> = emptyList(), hiddenPreChatFields: List<PreChatField> = emptyList()): Result<ConversationEntry>

Re-sends a conversation entry.

Return

The Result when attempting to re-send the message. Result.Success.data returns the sent message.

Parameters

conversationEntry

The conversation entry.

preChatFields

A List of PreChatField objects. Default is an empty list.

hiddenPreChatFields

A List of PreChatField objects that are not visible to the user. Default is an empty list.