package hello.world;
import com.formance.formance_sdk.SDK;
import com.formance.formance_sdk.models.operations.GetVersionsResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
SDK sdk = SDK.builder()
.build();
GetVersionsResponse res = sdk.getVersions()
.call();
if (res.getVersionsResponse().isPresent()) {
System.out.println(res.getVersionsResponse().get());
}
}
}