
ru.sms_activate.SMSActivateErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SMSActivateApi Show documentation
Show all versions of SMSActivateApi Show documentation
Lib for working with sms activate API.
package ru.sms_activate;
import com.google.gson.annotations.SerializedName;
import org.jetbrains.annotations.NotNull;
class SMSActivateErrorResponse {
/**
* Status response.
*/
private String status;
/**
* Message about error.
*/
@SerializedName(value = "message", alternate = {"msg"})
private String message;
/**
* Returns the error status response.
*
* @return the error status response.
*/
@NotNull
public String getStatus() {
return status;
}
/**
* Returns the message about error.
*
* @return message about error.
*/
@NotNull
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy