messages

suspend fun messages(limit: Int? = null, beforeNs: Long? = null, afterNs: Long? = null, direction: DecodedMessage.SortDirection = SortDirection.DESCENDING, deliveryStatus: DecodedMessage.MessageDeliveryStatus = MessageDeliveryStatus.ALL, excludeContentTypes: List<FfiContentType>? = null, excludeSenderInboxIds: List<String>? = null, insertedAfterNs: Long? = null, insertedBeforeNs: Long? = null, sortBy: DecodedMessage.SortBy = SortBy.SENT_TIME): List<DecodedMessage>

Get the raw list of messages from this group.

This method returns all messages in chronological order without additional processing. Reactions, replies, and other associated metadata are returned as separate messages and are not linked to their parent messages.

For UI rendering, consider using enrichedMessages instead, which provides messages with enriched metadata automatically included.

See also