net.mossol.bot.model.LineReplyRequest 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;
/**
* Created by Amos.Doan.Mac on 2017. 12. 3..
*/
@Data
public class LineReplyRequest {
private final String replyToken;
private List messages = new ArrayList<>();
public void setMessage(LineMessage message) {
messages.add(message);
}
}