Skip to content

0.2.0

Compare
Choose a tag to compare
@harry-peirse harry-peirse released this 02 Aug 15:09
· 170 commits to dev since this release

Available in Maven Central

What's new in this version

  • Added a requestId field to every response class which contains the Cko-Request-Id Header from Checkout.com, which can be helpful for debugging and logging. Note: where the response is a collection of objects, each object has this field set identically.
  • Added an optional processing object on the Payment request - with two fields, aft and mid
  • Added an overloaded methods where appropriate to accept the Cko-Idempotency-Key
  • Added the optional 'first_name' field to the Recipient object
  • Abstract out the Gson serializer behind an interface so it is possible to plug in your own serializer if needed.

Add to your Gradle project with:

dependencies {
    implementation 'com.checkout:checkout-sdk-java:0.2.0'
}

Or add to your Maven project with:

<dependency>
    <groupId>com.checkout</groupId>
    <artifactId>checkout-sdk-java</artifactId>
    <version>0.2.0</version>
</dependency>