cz.mmsparams.api.websocket.messages.sms.SmsSendPhoneResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.websocket.messages.sms;
import java.io.Serializable;
import cz.mmsparams.api.interfaces.IResponseMessage;
import cz.mmsparams.api.websocket.WebSocketMessageBase;
import cz.mmsparams.api.websocket.model.sms.SmsSendResponseModel;
/**
* Message containing information about status of sending SMS message
*/
public class SmsSendPhoneResponseMessage extends WebSocketMessageBase implements Serializable, IResponseMessage
{
private SmsSendResponseModel smsSendResponseModel;
public SmsSendResponseModel getSmsSendResponseModel()
{
return smsSendResponseModel;
}
public void setSmsSendResponseModel(SmsSendResponseModel smsSendResponseModel)
{
this.smsSendResponseModel = smsSendResponseModel;
}
@Override
public String toString()
{
return "SmsSendPhoneResponseMessage{" +
"smsSendPhoneResponseModel=" + smsSendResponseModel +
"} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy