io.paymenthighway.model.response.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paymenthighway Show documentation
Show all versions of paymenthighway Show documentation
Payment Highway Java API Library
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;
}
}