Skip to content

Commit

Permalink
Update Ideal payment request
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko committed May 8, 2024
1 parent 28424f7 commit 2a4f3aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,14 @@
@ToString(callSuper = true)
public final class RequestIdealSource extends AbstractRequestSource {

private String bic;

private String description;

private String language;

@Builder
private RequestIdealSource(final String bic,
final String description,
private RequestIdealSource(final String description,
final String language) {
super(PaymentSourceType.IDEAL);
this.bic = bic;
this.description = description;
this.language = language;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ void shouldMakeAliPayPayment() {
void shouldMakeIdealPayment() {
final PaymentRequest paymentRequest = PaymentRequest.builder()
.source(RequestIdealSource.builder()
.bic("INGBNL2A")
.description("ORD50234E89")
.language("nl")
.build())
Expand Down

0 comments on commit 2a4f3aa

Please sign in to comment.