br.com.anteros.payment.api.braspag.domain.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Payment-Api Show documentation
Show all versions of Anteros-Payment-Api Show documentation
Anteros Payment Integration Api for Java.
The newest version!
package br.com.anteros.payment.api.braspag.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Error {
@JsonProperty("Code")
private int Code;
@JsonProperty("Message")
private String Message;
public int getCode() {
return Code;
}
public void setCode(int code) {
Code = code;
}
public String getMessage() {
return Message;
}
public void setMessage(String message) {
Message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy