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

net.mossol.bot.model.LinePushRequest Maven / Gradle / Ivy

There is a newer version: 0.0.3.8
Show newest version
package net.mossol.bot.model;

import java.util.ArrayList;
import java.util.List;

import lombok.Data;

@Data
public class LinePushRequest {
    private final String to;
    private List messages = new ArrayList<>();
    private boolean notificationDisabled;

    public void setMessage(LineMessage message) {
        messages.add(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy