Skip to content

Commit

Permalink
Fix CountryCode
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwok-he-Chu committed Jan 8, 2024
1 parent 026f771 commit b98be47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ public ResponseEntity<PaymentResponse> payments(@RequestHeader String host, @Req
// we strongly recommend that you the billingAddress in your request
// card schemes require this for channel web, iOS, and Android implementations
BillingAddress billingAddress = new BillingAddress();
billingAddress.setCountry("Amsterdam");
billingAddress.setCity("The Netherlands");
billingAddress.setCountry("NL");
billingAddress.setCity("Amsterdam");
billingAddress.setStreet("Street");
billingAddress.setHouseNumberOrName("1");
billingAddress.setStateOrProvince("North Holland");
Expand Down

0 comments on commit b98be47

Please sign in to comment.