jp.gopay.sdk.models.response.PaymentError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.response;
import com.google.gson.annotations.SerializedName;
public class PaymentError {
@SerializedName("code")
private Long code;
@SerializedName("message")
private String message;
@SerializedName("detail")
private String detail;
public Long getCode() {
return code;
}
public String getMessage() {
return message;
}
public String getDetail() {
return detail;
}
}