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

cz.mmsparams.api.websocket.messages.sms.SmsSendPhoneResponseMessage Maven / Gradle / Ivy

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