Message as stored in the database / returned by history API

interface StoredMessage {
    encrypted: SerializedEncryptedMessage;
    from: string;
    id: string;
    l2psTxHash: string;
    l2psUid: string;
    messageHash: string;
    status: MessageStatus;
    timestamp: number;
    to: string;
}

Properties

from: string
id: string
l2psTxHash: string
l2psUid: string
messageHash: string
timestamp: number
to: string