com.univapay.sdk.models.response.PaymentError Maven / Gradle / Ivy
The newest version!
package com.univapay.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 - 2025 Weber Informatics LLC | Privacy Policy