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

jp.gopay.sdk.models.response.PaymentError Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy