cz.mmsparams.api.websocket.messages.smsc.SmscSendSmsMessage 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.smsc;
import java.io.Serializable;
import cz.mmsparams.api.websocket.model.smsc.SmscSendModel;
public class SmscSendSmsMessage extends SmscMessageBase implements ISmscMessage, Serializable
{
private SmscSendModel smscSendModel;
public SmscSendModel getSmscSendModel()
{
return smscSendModel;
}
public void setSmscSendModel(SmscSendModel smscSendModel)
{
this.smscSendModel = smscSendModel;
}
@Override
public String toString()
{
return "SmscSendSmsMessage{" +
"smscSendSmsModel=" + smscSendModel +
"} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy