plugNmeet JS SDK - v2.0.3
    Preparing search index...

    Type Alias DataTrackInfo

    DataTrackInfo: Message<"livekit.DataTrackInfo"> & {
        pubHandle: number;
        sid: string;
        name: string;
        encryption: Encryption_Type;
    }

    Type Declaration

    • pubHandle: number

      Client-assigned, 16-bit identifier that will be attached to packets sent by the publisher.

      from field: uint32 pub_handle = 1;

    • sid: string

      Server-assigned track identifier.

      from field: string sid = 2;

    • name: string

      Human-readable identifier (e.g., geoLocation, servoPosition.x, etc.), unique per publisher.

      from field: string name = 3;

    • encryption: Encryption_Type

      Method used for end-to-end encryption (E2EE) on packet payloads.

      from field: livekit.Encryption.Type encryption = 4;

    from message livekit.DataTrackInfo