Member Junction
    Preparing search index...

    A message received on the LiveKit data channel (the room-native "chat" / app payload).

    interface LiveKitDataMessage {
        Bytes: Uint8Array;
        FromDisplayName?: string;
        FromIdentity?: string;
        ReceivedAt: number;
        Text: string;
        Topic?: string;
    }
    Index

    Properties

    Bytes: Uint8Array

    The raw bytes as received (for non-text payloads).

    FromDisplayName?: string

    The sender's display name, when known.

    FromIdentity?: string

    The sender's participant identity, when the message came from a remote participant.

    ReceivedAt: number

    Epoch-ms receive timestamp.

    Text: string

    The decoded text payload (UTF-8). For binary payloads use Bytes.

    Topic?: string

    The optional topic the message was published under.