Skip to content

Commit 8640f33

Browse files
authored
Merge pull request #115 from CyberSource/release/aug25
Release/aug25
2 parents 88bb71e + 5b639ba commit 8640f33

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>com.cybersource</groupId>
1515
<artifactId>cybersource-rest-client-java</artifactId>
16-
<version>0.0.79</version>
16+
<version>0.0.80</version>
1717
</dependency>
1818
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
1919
<dependency>

src/main/java/samples/AccountUpdater/RetrieveBatchReport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import Data.Configuration;
55
import Invokers.ApiClient;
66
import Invokers.ApiException;
7-
import Model.InlineResponse20010;
7+
import Model.InlineResponse20011;
88
import Model.InlineResponse2009;
99
import com.cybersource.authsdk.core.MerchantConfig;
1010

@@ -27,7 +27,7 @@ public static void main(String args[]) throws Exception {
2727

2828
public static void run() {
2929
String batchId = "16188390061150001062041064";
30-
InlineResponse20010 result = null;
30+
InlineResponse20011 result = null;
3131
try {
3232
merchantProp = Configuration.getMerchantDetails();
3333
ApiClient apiClient = new ApiClient();

src/main/java/samples/AccountUpdater/RetrieveBatchStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import Invokers.ApiClient;
66
import Invokers.ApiException;
77
import Model.InlineResponse2008;
8-
import Model.InlineResponse2009;
8+
import Model.InlineResponse20010;
99

1010
import com.cybersource.authsdk.core.MerchantConfig;
1111

@@ -28,7 +28,7 @@ public static void main(String args[]) throws Exception {
2828

2929
public static void run() {
3030
String batchId = "16188390061150001062041064";
31-
InlineResponse2009 result = null;
31+
InlineResponse20010 result = null;
3232
try {
3333
merchantProp = Configuration.getMerchantDetails();
3434
ApiClient apiClient = new ApiClient();

0 commit comments

Comments
 (0)