0.2.0
What's new in this version
- Added a
requestId
field to every response class which contains theCko-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
andmid
- 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>