/appstax-java

Java SDK for Appstax

Primary LanguageJavaMIT LicenseMIT

Appstax Java SDK

Build Status Download

This is the official Java SDK for Appstax.

It's a new SDK, so let us know if you encounter any issues.

Usage example

Ax ax = new Ax("key");

AxObject object = ax.object("contacts");
object.put("name", "Foo McBar");
object.put("email", "foo@example.com");

ax.save(object);

License

MIT License