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

io.payrun.Application Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package io.payrun;

import io.payrun.helpers.RequestHelper;

public class Application {

    public static void main(String args[]) {
        try {
            RequestHelper request =
                    new RequestHelper(
                            "https://api.test.payrun.io",
                            "ozPpjEMEPUJ6genpa2lw",
                            "Vj7fC5oh02u2g0Hm4pEXA6crI57lh9UiHC0wPg6lQyg",
                            "default");

            SimplePayroll simplePayroll = new SimplePayroll();

            simplePayroll.Execute(request);
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy