Skip to content

Commit 40058fa

Browse files
Bump version to 2.26.1
1 parent 0942b59 commit 40058fa

17 files changed

+638
-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.25.0</version>
32+
<version>2.26.1</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.25.0'
41+
compile group: 'com.blockchyp', name: 'blockchyp-java', version:'2.26.1'
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.25.0</version>
13+
<version>2.26.1</version>
1414
<packaging>jar</packaging>
1515

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

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

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ public class AuthorizationRequest implements ITimeoutRequest, ICoreRequest, IPay
6464

6565
private String postalCode;
6666

67+
private String country;
68+
6769
private boolean manualEntry;
6870

6971
private String ksn;
@@ -164,6 +166,12 @@ public class AuthorizationRequest implements ITimeoutRequest, ICoreRequest, IPay
164166

165167
private boolean cardMetadataLookup;
166168

169+
private String shippingAmount;
170+
171+
private String processorId;
172+
173+
private String externalCustomerId;
174+
167175
/**
168176
* Sets the request timeout in seconds.
169177
* @param value the request timeout in seconds.
@@ -564,6 +572,23 @@ public String getPostalCode() {
564572
return this.postalCode;
565573
}
566574

575+
/**
576+
* Sets the cardholder country.
577+
* @param value the cardholder country.
578+
*/
579+
public void setCountry(String value) {
580+
this.country = value;
581+
}
582+
583+
/**
584+
* Gets the cardholder country.
585+
* @return the cardholder country.
586+
*/
587+
@JsonProperty("country")
588+
public String getCountry() {
589+
return this.country;
590+
}
591+
567592
/**
568593
* Sets that the payment entry method is a manual keyed transaction.
569594
* @param value that the payment entry method is a manual keyed transaction. If this is
@@ -1494,6 +1519,57 @@ public boolean isCardMetadataLookup() {
14941519
return this.cardMetadataLookup;
14951520
}
14961521

1522+
/**
1523+
* Sets the shipping cost associated with the transaction
1524+
* @param value the shipping cost associated with the transaction
1525+
*/
1526+
public void setShippingAmount(String value) {
1527+
this.shippingAmount = value;
1528+
}
1529+
1530+
/**
1531+
* Gets the shipping cost associated with the transaction
1532+
* @return the shipping cost associated with the transaction
1533+
*/
1534+
@JsonProperty("shippingAmount")
1535+
public String getShippingAmount() {
1536+
return this.shippingAmount;
1537+
}
1538+
1539+
/**
1540+
* Sets the processor ID associated with the transaction
1541+
* @param value the processor ID associated with the transaction
1542+
*/
1543+
public void setProcessorId(String value) {
1544+
this.processorId = value;
1545+
}
1546+
1547+
/**
1548+
* Gets the processor ID associated with the transaction
1549+
* @return the processor ID associated with the transaction
1550+
*/
1551+
@JsonProperty("processorId")
1552+
public String getProcessorId() {
1553+
return this.processorId;
1554+
}
1555+
1556+
/**
1557+
* Sets the external customer ID associated with the transaction
1558+
* @param value the external customer ID associated with the transaction
1559+
*/
1560+
public void setExternalCustomerId(String value) {
1561+
this.externalCustomerId = value;
1562+
}
1563+
1564+
/**
1565+
* Gets the external customer ID associated with the transaction
1566+
* @return the external customer ID associated with the transaction
1567+
*/
1568+
@JsonProperty("externalCustomerId")
1569+
public String getExternalCustomerId() {
1570+
return this.externalCustomerId;
1571+
}
1572+
14971573
/**
14981574
* Adds a an item to display.
14991575
* @param value an item to display. Can be overwritten or appended, based on the

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

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,12 @@ public class AuthorizationResponse implements IAbstractAcknowledgement, IApprova
113113

114114
private String expYear;
115115

116+
private String postalCode;
117+
118+
private String address;
119+
120+
private String country;
121+
116122
private AvsResponse avsResponse;
117123

118124
private String cvvResponse;
@@ -979,6 +985,57 @@ public String getExpYear() {
979985
return this.expYear;
980986
}
981987

988+
/**
989+
* Sets the card postal code.
990+
* @param value the card postal code.
991+
*/
992+
public void setPostalCode(String value) {
993+
this.postalCode = value;
994+
}
995+
996+
/**
997+
* Gets the card postal code.
998+
* @return the card postal code.
999+
*/
1000+
@JsonProperty("postalCode")
1001+
public String getPostalCode() {
1002+
return this.postalCode;
1003+
}
1004+
1005+
/**
1006+
* Sets the card address.
1007+
* @param value the card address.
1008+
*/
1009+
public void setAddress(String value) {
1010+
this.address = value;
1011+
}
1012+
1013+
/**
1014+
* Gets the card address.
1015+
* @return the card address.
1016+
*/
1017+
@JsonProperty("address")
1018+
public String getAddress() {
1019+
return this.address;
1020+
}
1021+
1022+
/**
1023+
* Sets the card country.
1024+
* @param value the card country.
1025+
*/
1026+
public void setCountry(String value) {
1027+
this.country = value;
1028+
}
1029+
1030+
/**
1031+
* Gets the card country.
1032+
* @return the card country.
1033+
*/
1034+
@JsonProperty("country")
1035+
public String getCountry() {
1036+
return this.country;
1037+
}
1038+
9821039
/**
9831040
* Sets address verification results if address information was submitted.
9841041
* @param value address verification results if address information was submitted.

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ public class BalanceRequest implements ITimeoutRequest, ICoreRequest, IPaymentMe
6060

6161
private String postalCode;
6262

63+
private String country;
64+
6365
private boolean manualEntry;
6466

6567
private String ksn;
@@ -474,6 +476,23 @@ public String getPostalCode() {
474476
return this.postalCode;
475477
}
476478

479+
/**
480+
* Sets the cardholder country.
481+
* @param value the cardholder country.
482+
*/
483+
public void setCountry(String value) {
484+
this.country = value;
485+
}
486+
487+
/**
488+
* Gets the cardholder country.
489+
* @return the cardholder country.
490+
*/
491+
@JsonProperty("country")
492+
public String getCountry() {
493+
return this.country;
494+
}
495+
477496
/**
478497
* Sets that the payment entry method is a manual keyed transaction.
479498
* @param value that the payment entry method is a manual keyed transaction. If this is

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

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ public class BalanceResponse implements IAbstractAcknowledgement, ICoreResponse,
6565

6666
private String expYear;
6767

68+
private String postalCode;
69+
70+
private String address;
71+
72+
private String country;
73+
6874
private AvsResponse avsResponse;
6975

7076
private String cvvResponse;
@@ -484,6 +490,57 @@ public String getExpYear() {
484490
return this.expYear;
485491
}
486492

493+
/**
494+
* Sets the card postal code.
495+
* @param value the card postal code.
496+
*/
497+
public void setPostalCode(String value) {
498+
this.postalCode = value;
499+
}
500+
501+
/**
502+
* Gets the card postal code.
503+
* @return the card postal code.
504+
*/
505+
@JsonProperty("postalCode")
506+
public String getPostalCode() {
507+
return this.postalCode;
508+
}
509+
510+
/**
511+
* Sets the card address.
512+
* @param value the card address.
513+
*/
514+
public void setAddress(String value) {
515+
this.address = value;
516+
}
517+
518+
/**
519+
* Gets the card address.
520+
* @return the card address.
521+
*/
522+
@JsonProperty("address")
523+
public String getAddress() {
524+
return this.address;
525+
}
526+
527+
/**
528+
* Sets the card country.
529+
* @param value the card country.
530+
*/
531+
public void setCountry(String value) {
532+
this.country = value;
533+
}
534+
535+
/**
536+
* Gets the card country.
537+
* @return the card country.
538+
*/
539+
@JsonProperty("country")
540+
public String getCountry() {
541+
return this.country;
542+
}
543+
487544
/**
488545
* Sets address verification results if address information was submitted.
489546
* @param value address verification results if address information was submitted.

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

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@ public class CaptureResponse implements IAbstractAcknowledgement, IApprovalRespo
9393

9494
private String expYear;
9595

96+
private String postalCode;
97+
98+
private String address;
99+
100+
private String country;
101+
96102
private AvsResponse avsResponse;
97103

98104
private String cvvResponse;
@@ -756,6 +762,57 @@ public String getExpYear() {
756762
return this.expYear;
757763
}
758764

765+
/**
766+
* Sets the card postal code.
767+
* @param value the card postal code.
768+
*/
769+
public void setPostalCode(String value) {
770+
this.postalCode = value;
771+
}
772+
773+
/**
774+
* Gets the card postal code.
775+
* @return the card postal code.
776+
*/
777+
@JsonProperty("postalCode")
778+
public String getPostalCode() {
779+
return this.postalCode;
780+
}
781+
782+
/**
783+
* Sets the card address.
784+
* @param value the card address.
785+
*/
786+
public void setAddress(String value) {
787+
this.address = value;
788+
}
789+
790+
/**
791+
* Gets the card address.
792+
* @return the card address.
793+
*/
794+
@JsonProperty("address")
795+
public String getAddress() {
796+
return this.address;
797+
}
798+
799+
/**
800+
* Sets the card country.
801+
* @param value the card country.
802+
*/
803+
public void setCountry(String value) {
804+
this.country = value;
805+
}
806+
807+
/**
808+
* Gets the card country.
809+
* @return the card country.
810+
*/
811+
@JsonProperty("country")
812+
public String getCountry() {
813+
return this.country;
814+
}
815+
759816
/**
760817
* Sets address verification results if address information was submitted.
761818
* @param value address verification results if address information was submitted.

0 commit comments

Comments
 (0)