PreChatReceiptModel

open class PreChatReceiptModel(val timestamp: Long) : ChatFeedEntry

A confirmation entry shown in the feed after pre-chat fields have been submitted.

This synthetic entry provides visual feedback to the user that their pre-chat form submission was received and allows them to review what they submitted before the conversation is fully established.

Parameters

timestamp

The epoch timestamp when the pre-chat fields were submitted.

Constructors

Link copied to clipboard
constructor(timestamp: Long)

Properties

Link copied to clipboard
override val contentType: String

Identifies the type of content this entry represents. For conversation entries this matches the ConversationEntryType name; for synthetic entries it matches an internal type name. Useful for filtering or logging entry types.

Link copied to clipboard
open override val keyId: String

A stable identifier for this entry within the feed, suitable for use as a list item key in Compose lazy lists or RecyclerView adapters.

Link copied to clipboard
open override val timestamp: Long