net.mossol.bot.model.LinePushRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of line_bot_mossol-lib Show documentation
Show all versions of line_bot_mossol-lib Show documentation
Line Bot Mossol (line_bot_mossol-lib)
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