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

ru.sms_activate.SMSActivateErrorResponse Maven / Gradle / Ivy

There is a newer version: 1.5.9
Show newest version
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