@qualithm/mqtt-wire - v0.1.5
    Preparing search index...

    Type Alias UnsubackPacket

    UNSUBACK packet - Unsubscribe acknowledgement.

    MQTT 5.0 §3.11

    type UnsubackPacket = {
        packetId: number;
        properties?: UnsubackProperties;
        reasonCodes?: readonly ReasonCode[];
        type: typeof UNSUBACK;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    properties?: UnsubackProperties

    UNSUBACK properties (5.0)

    reasonCodes?: readonly ReasonCode[]

    Reason codes (5.0, one per topic filter)

    type: typeof UNSUBACK

    Packet type discriminator.