File tree Expand file tree Collapse file tree 4 files changed +41
-3
lines changed
src/main/java/com/blockchyp/client/dto Expand file tree Collapse file tree 4 files changed +41
-3
lines changed Original file line number Diff line number Diff 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
3838For 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
4444You'll also need the Maven plugin turned on. Make sure your Gradle build has something like this in it:
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments