Java
The libraries are designed to work with java.
The library name matches the service name.
Always check the version of the service you are calling and install a compatible version of the library.
The libraries are available in maven central.
How to use
We recommend setting the connection timeout (it differs for each environment) when using the library:
ApiClient client = new ApiClient();
client.setConnectTimeout((int) TimeUnit.SECONDS.toMillis(60));
client.setReadTimeout((int) TimeUnit.SECONDS.toMillis(60));
client.setWriteTimeout(((int) TimeUnit.SECONDS.toMillis(60)));