Skip to content

Commit 7b1132c

Browse files
Bump version to 2.24.5
1 parent ef8c824 commit 7b1132c

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The BlockChyp SDK is in Maven's Central Repository. Just add this snippet to you
2929
<dependency>
3030
<groupId>com.blockchyp</groupId>
3131
<artifactId>blockchyp-java</artifactId>
32-
<version>2.24.4</version>
32+
<version>2.24.5</version>
3333
</dependency>
3434
```
3535

@@ -38,7 +38,7 @@ The BlockChyp SDK is in Maven's Central Repository. Just add this snippet to you
3838
For the hipsters among you who've moved up to Gradle, try adding this snippet under dependencies in your Gradle build file.
3939

4040
```
41-
compile group: 'com.blockchyp', name: 'blockchyp-java', version:'2.24.4'
41+
compile group: 'com.blockchyp', name: 'blockchyp-java', version:'2.24.5'
4242
```
4343

4444
You'll also need the Maven plugin turned on. Make sure your Gradle build has something like this in it:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>com.blockchyp</groupId>
1212
<artifactId>blockchyp-java</artifactId>
13-
<version>2.24.4</version>
13+
<version>2.24.5</version>
1414
<packaging>jar</packaging>
1515

1616
<name>${project.groupId}:${project.artifactId}</name>

src/main/java/com/blockchyp/client/dto/MerchantProfile.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ public class MerchantProfile implements ITimeoutRequest {
145145

146146
private boolean accountUpdaterEnrolled;
147147

148+
private boolean bypassEnrollAuthEnabled;
149+
148150
/**
149151
* Sets the request timeout in seconds.
150152
* @param value the request timeout in seconds.
@@ -1255,6 +1257,23 @@ public boolean isAccountUpdaterEnrolled() {
12551257
return this.accountUpdaterEnrolled;
12561258
}
12571259

1260+
/**
1261+
* Sets whether the merchant should bypass an auth with TSYS on Enrollment.
1262+
* @param value whether the merchant should bypass an auth with TSYS on Enrollment.
1263+
*/
1264+
public void setBypassEnrollAuthEnabled(boolean value) {
1265+
this.bypassEnrollAuthEnabled = value;
1266+
}
1267+
1268+
/**
1269+
* Gets whether the merchant should bypass an auth with TSYS on Enrollment.
1270+
* @return whether the merchant should bypass an auth with TSYS on Enrollment.
1271+
*/
1272+
@JsonProperty("bypassEnrollAuthEnabled")
1273+
public boolean isBypassEnrollAuthEnabled() {
1274+
return this.bypassEnrollAuthEnabled;
1275+
}
1276+
12581277
/**
12591278
* Adds a three default values for tips.
12601279
* @param value three default values for tips. Can be provided as a percentage if a

src/main/java/com/blockchyp/client/dto/MerchantProfileResponse.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ public class MerchantProfileResponse implements IAbstractAcknowledgement {
149149

150150
private boolean accountUpdaterEnrolled;
151151

152+
private boolean bypassEnrollAuthEnabled;
153+
152154
/**
153155
* Sets whether or not the request succeeded.
154156
* @param value whether or not the request succeeded.
@@ -1293,6 +1295,23 @@ public boolean isAccountUpdaterEnrolled() {
12931295
return this.accountUpdaterEnrolled;
12941296
}
12951297

1298+
/**
1299+
* Sets whether the merchant should bypass an auth with TSYS on Enrollment.
1300+
* @param value whether the merchant should bypass an auth with TSYS on Enrollment.
1301+
*/
1302+
public void setBypassEnrollAuthEnabled(boolean value) {
1303+
this.bypassEnrollAuthEnabled = value;
1304+
}
1305+
1306+
/**
1307+
* Gets whether the merchant should bypass an auth with TSYS on Enrollment.
1308+
* @return whether the merchant should bypass an auth with TSYS on Enrollment.
1309+
*/
1310+
@JsonProperty("bypassEnrollAuthEnabled")
1311+
public boolean isBypassEnrollAuthEnabled() {
1312+
return this.bypassEnrollAuthEnabled;
1313+
}
1314+
12961315
/**
12971316
* Adds a three default values for tips.
12981317
* @param value three default values for tips. Can be provided as a percentage if a

0 commit comments

Comments
 (0)