SW Combine SDK
    Preparing search index...

    Interface MessageListItem

    Message item returned by client.character.messages.list().

    List responses provide metadata only. To get full message content (communication), use client.character.messages.get() with the message UID.

    const listItem: MessageListItem = {
    attributes: { uid: '38:105138990' },
    sender: { attributes: { uid: '1:1467702' }, value: 'Marcinius Turelles' },
    receiver: { attributes: { uid: '1:1467702' }, value: 'Marcinius Turelles' },
    time: { years: 27, days: 88, hours: 5, mins: 12, secs: 14, timestamp: '1771675934' },
    };
    interface MessageListItem {
        attributes: { href?: string; uid: string };
        receiver: MessageParticipant;
        sender: MessageParticipant;
        time: MessageTime;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    attributes: { href?: string; uid: string }

    Message reference metadata, including message UID

    Type Declaration

    • Optionalhref?: string

      API URL for this specific message

    • uid: string

      Message UID (for example: 38:105138990)

    Receiver reference

    Sender reference

    Message timestamp