All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestra.plugin.mqtt.services.Message Maven / Gradle / Ivy

The newest version!
package io.kestra.plugin.mqtt.services;

import lombok.Builder;
import lombok.Value;

import java.util.List;

@Value
@Builder
public class Message {
    Integer id;
    String topic;
    Integer qos;
    List properties;
    Object payload;
    Boolean retain;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy