cz.mmsparams.api.websocket.model.sms.SmsSendResponseModel 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.model.sms;
import java.io.Serializable;
import cz.mmsparams.api.websocket.WebSocketModelBase;
public class SmsSendResponseModel extends WebSocketModelBase implements Serializable
{
private int result;
private String resultText;
public int getResult()
{
return result;
}
public void setResult(int result)
{
this.result = result;
}
public String getResultText()
{
return resultText;
}
public void setResultText(String resultText)
{
this.resultText = resultText;
}
@Override
public String toString()
{
return "SmsSendResponseModel{" +
"result=" + result +
", resultTest='" + resultText + '\'' +
"} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy