Skip to content

Commit

Permalink
Release 2.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hunziker committed Feb 1, 2021
1 parent d3f8482 commit 3b8f149
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.postfinancecheckout</groupId>
<artifactId>postfinancecheckout-java-sdk</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -33,7 +33,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.12"
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.13"
```

### Others
Expand All @@ -46,7 +46,7 @@ mvn clean package

Then manually install the following JARs:

* `target/postfinancecheckout-java-sdk-2.2.12.jar`
* `target/postfinancecheckout-java-sdk-2.2.13.jar`
* `target/lib/*.jar`

## Usage
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.postfinancecheckout'
version = '2.2.12'
version = '2.2.13'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.postfinancecheckout",
name := "postfinancecheckout-java-sdk",
version := "2.2.12",
version := "2.2.13",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>postfinancecheckout-java-sdk</artifactId>
<packaging>jar</packaging>
<name>postfinancecheckout-java-sdk</name>
<version>2.2.12</version>
<version>2.2.13</version>
<url>https://www.postfinance.ch/checkout</url>
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.postfinancecheckout.sdk.model.BankTransaction;
import com.postfinancecheckout.sdk.model.Transaction;
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
Expand Down Expand Up @@ -56,7 +57,7 @@ public class ChargeBankTransaction extends TransactionAwareEntity {


@JsonProperty("transaction")
protected Long transaction = null;
protected Transaction transaction = null;


@JsonProperty("transactionCurrencyAmount")
Expand Down Expand Up @@ -117,7 +118,7 @@ public Long getSpaceViewId() {
* @return transaction
**/
@ApiModelProperty(value = "")
public Long getTransaction() {
public Transaction getTransaction() {
return transaction;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.postfinancecheckout.sdk.model.BankTransaction;
import com.postfinancecheckout.sdk.model.Refund;
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
Expand All @@ -48,7 +49,7 @@ public class RefundBankTransaction extends TransactionAwareEntity {


@JsonProperty("refund")
protected Long refund = null;
protected Refund refund = null;


@JsonProperty("refundCurrencyAmount")
Expand Down Expand Up @@ -93,7 +94,7 @@ public String getLanguage() {
* @return refund
**/
@ApiModelProperty(value = "")
public Long getRefund() {
public Refund getRefund() {
return refund;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import com.fasterxml.jackson.annotation.JsonValue;
import com.postfinancecheckout.sdk.model.BankTransaction;
import com.postfinancecheckout.sdk.model.LineItem;
import com.postfinancecheckout.sdk.model.Refund;
import com.postfinancecheckout.sdk.model.TransactionAwareEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
Expand Down Expand Up @@ -55,7 +56,7 @@ public class RefundRecoveryBankTransaction extends TransactionAwareEntity {


@JsonProperty("refund")
protected Long refund = null;
protected Refund refund = null;


@JsonProperty("refundCurrencyAmount")
Expand Down Expand Up @@ -110,7 +111,7 @@ public List<LineItem> getLineItems() {
* @return refund
**/
@ApiModelProperty(value = "")
public Long getRefund() {
public Refund getRefund() {
return refund;
}

Expand Down

0 comments on commit 3b8f149

Please sign in to comment.