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

io.paymenthighway.model.response.Status Maven / Gradle / Ivy

There is a newer version: 2.1.1.1
Show newest version
package io.paymenthighway.model.response;

/**
 * Status POJO
 */
public class Status {
  String state;
  String code;
  String message;

  public Status() {
  }

  public Status(String state, String code) {
    this.state = state;
    this.code = code;
    this.message = null;
  }

  public Status(String state, String code, String message) {
    this.state = state;
    this.code = code;
    this.message = message;
  }

  public String getState() {
    return state;
  }

  public String getCode() {
    return code;
  }

  public String getMessage() {
    return message;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy