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

nl.pay.sdk.servicelist.Request Maven / Gradle / Ivy

Go to download

(Pay.nl) SDK for creating (payment) transactions with the Pay.nl systems.

The newest version!
package nl.pay.sdk.servicelist;

public class Request {
    public String result;
    public String errorId;
    public String errorMessage;

    /**
     * getResult - Return the result status (did the request go okay?)
     * @return Result status
     */
    public String getResult() {
        return result;
    }

    /**
     * getErrorId - Return the Error Id - if present
     * @return Error ID (if present)
     */
    public String getErrorId() {
        return errorId;
    }

    /**
     * getErrorMessage - Return the readable error message - if present
     * @return Readable error message
     */
    public String getErrorMessage() {
        return errorMessage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy