ru.dezhik.sms.sender.api.smsru.send.SMSRuSendResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sms-sender Show documentation
Show all versions of sms-sender Show documentation
Library for sending SMS via sms.ru gateway
package ru.dezhik.sms.sender.api.smsru.send;
import java.util.ArrayList;
import java.util.List;
import ru.dezhik.sms.sender.api.smsru.SMSRuApiResponse;
/**
* @author ilya.dezhin
*/
public class SMSRuSendResponse extends SMSRuApiResponse {
List msgIds = new ArrayList();
Double balance;
public Double getBalance() {
return balance;
}
public void setBalance(Double balance) {
this.balance = balance;
}
public void addMsgId(String msgId) {
msgIds.add(msgId);
}
public List getMsgIds() {
return msgIds;
}
}