Interface MqttNodeParameters

Source
interface MqttNodeParameters {
    message?: string;
    options?: { qos?: 0 | 1 | 2; retain?: boolean };
    sendInputData?: boolean;
    topic?: string;
}

Properties§

§readonly message?: string

The message to publish

§readonly options?: { ... }

Default: {}

§readonly sendInputData?: boolean

Whether to send the data the node receives as JSON Default: true

§readonly topic?: string

The topic to publish to