Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/main/java/com/checkout/payments/PaymentRecipient.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.checkout.payments;

import com.checkout.common.Address;
import com.checkout.common.CountryCode;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Data;
Expand All @@ -25,7 +24,4 @@ public final class PaymentRecipient {

@SerializedName("last_name")
private String lastName;

private CountryCode country;

}
1 change: 0 additions & 1 deletion src/test/java/com/checkout/TestHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,6 @@ public static PaymentContextsRequest createPaymentContextsTabbyRequest() {
public static PaymentRecipient createRecipient() {
return PaymentRecipient.builder()
.accountNumber("1234567")
.country(CountryCode.ES)
.dateOfBirth("1985-05-15")
.firstName("IT")
.lastName("TESTING")
Expand Down
1 change: 0 additions & 1 deletion src/test/java/com/checkout/payments/GetPaymentsTestIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ private ProductRequest createPhysicalProductRequest() {
private PaymentRecipient createPaymentRecipient() {
return PaymentRecipient.builder()
.accountNumber("1234567")
.country(CountryCode.ES)
.dateOfBirth("1985-05-15")
.firstName("IT")
.lastName("TESTING")
Expand Down
Loading