interface MQTTDataDeprecated {
    bucket: string;
    message: string;
    options?: {
        qos?: number;
    };
    topic: string;
}

Hierarchy

  • Omit<MQTTData, "device">
    • MQTTDataDeprecated

Properties

bucket: string

Bucket to receive message

Deprecated

use "device" instead

message: string

Message scope

options?: {
    qos?: number;
}

Options of the publishing message

Type declaration

  • Optional qos?: number

    Default 0

topic: string

Topic of the message