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

ru.dezhik.sms.sender.api.smsru.send.SMSRuSendResponse Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy