Skip to content

Commit 3b8f149

Browse files
author
Thomas Hunziker
committed
Release 2.2.13
1 parent d3f8482 commit 3b8f149

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this dependency to your project's POM:
2323
<dependency>
2424
<groupId>com.postfinancecheckout</groupId>
2525
<artifactId>postfinancecheckout-java-sdk</artifactId>
26-
<version>2.2.12</version>
26+
<version>2.2.13</version>
2727
<scope>compile</scope>
2828
</dependency>
2929
```
@@ -33,7 +33,7 @@ Add this dependency to your project's POM:
3333
Add this dependency to your project's build file:
3434

3535
```groovy
36-
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.12"
36+
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.13"
3737
```
3838

3939
### Others
@@ -46,7 +46,7 @@ mvn clean package
4646

4747
Then manually install the following JARs:
4848

49-
* `target/postfinancecheckout-java-sdk-2.2.12.jar`
49+
* `target/postfinancecheckout-java-sdk-2.2.13.jar`
5050
* `target/lib/*.jar`
5151

5252
## Usage

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.postfinancecheckout'
5-
version = '2.2.12'
5+
version = '2.2.13'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.postfinancecheckout",
44
name := "postfinancecheckout-java-sdk",
5-
version := "2.2.12",
5+
version := "2.2.13",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>postfinancecheckout-java-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>postfinancecheckout-java-sdk</name>
8-
<version>2.2.12</version>
8+
<version>2.2.13</version>
99
<url>https://www.postfinance.ch/checkout</url>
1010
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
1111
<scm>

src/main/java/com/postfinancecheckout/sdk/model/ChargeBankTransaction.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.fasterxml.jackson.annotation.JsonCreator;
2626
import com.fasterxml.jackson.annotation.JsonValue;
2727
import com.postfinancecheckout.sdk.model.BankTransaction;
28+
import com.postfinancecheckout.sdk.model.Transaction;
2829
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
2930
import io.swagger.annotations.ApiModel;
3031
import io.swagger.annotations.ApiModelProperty;
@@ -56,7 +57,7 @@ public class ChargeBankTransaction extends TransactionAwareEntity {
5657

5758

5859
@JsonProperty("transaction")
59-
protected Long transaction = null;
60+
protected Transaction transaction = null;
6061

6162

6263
@JsonProperty("transactionCurrencyAmount")
@@ -117,7 +118,7 @@ public Long getSpaceViewId() {
117118
* @return transaction
118119
**/
119120
@ApiModelProperty(value = "")
120-
public Long getTransaction() {
121+
public Transaction getTransaction() {
121122
return transaction;
122123
}
123124

src/main/java/com/postfinancecheckout/sdk/model/RefundBankTransaction.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.fasterxml.jackson.annotation.JsonCreator;
2626
import com.fasterxml.jackson.annotation.JsonValue;
2727
import com.postfinancecheckout.sdk.model.BankTransaction;
28+
import com.postfinancecheckout.sdk.model.Refund;
2829
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
2930
import io.swagger.annotations.ApiModel;
3031
import io.swagger.annotations.ApiModelProperty;
@@ -48,7 +49,7 @@ public class RefundBankTransaction extends TransactionAwareEntity {
4849

4950

5051
@JsonProperty("refund")
51-
protected Long refund = null;
52+
protected Refund refund = null;
5253

5354

5455
@JsonProperty("refundCurrencyAmount")
@@ -93,7 +94,7 @@ public String getLanguage() {
9394
* @return refund
9495
**/
9596
@ApiModelProperty(value = "")
96-
public Long getRefund() {
97+
public Refund getRefund() {
9798
return refund;
9899
}
99100

src/main/java/com/postfinancecheckout/sdk/model/RefundRecoveryBankTransaction.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import com.fasterxml.jackson.annotation.JsonValue;
2727
import com.postfinancecheckout.sdk.model.BankTransaction;
2828
import com.postfinancecheckout.sdk.model.LineItem;
29+
import com.postfinancecheckout.sdk.model.Refund;
2930
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
3031
import io.swagger.annotations.ApiModel;
3132
import io.swagger.annotations.ApiModelProperty;
@@ -55,7 +56,7 @@ public class RefundRecoveryBankTransaction extends TransactionAwareEntity {
5556

5657

5758
@JsonProperty("refund")
58-
protected Long refund = null;
59+
protected Refund refund = null;
5960

6061

6162
@JsonProperty("refundCurrencyAmount")
@@ -110,7 +111,7 @@ public List<LineItem> getLineItems() {
110111
* @return refund
111112
**/
112113
@ApiModelProperty(value = "")
113-
public Long getRefund() {
114+
public Refund getRefund() {
114115
return refund;
115116
}
116117

0 commit comments

Comments
 (0)