Skip to content

Commit

Permalink
delete captchaToken field from CreateCheckoutFormInitializeRequest (#149
Browse files Browse the repository at this point in the history
)
  • Loading branch information
okanbisgin authored May 26, 2023
1 parent 5b9d62d commit f1d47f0
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public class CreateCheckoutFormInitializeRequest extends Request {
private Boolean debitCardAllowed;
private Boolean subscriptionPaymentEnabled;
private Boolean payWithIyzico;
private String captchaToken;

public BigDecimal getPrice() {
return price;
Expand Down Expand Up @@ -184,15 +183,6 @@ public void setPayWithIyzico(Boolean payWithIyzico) {
this.payWithIyzico = payWithIyzico;
}

public String getCaptchaToken() {

return captchaToken;
}

public void setCaptchaToken(String captchaToken) {

this.captchaToken = captchaToken;
}

@Override
public String toString() {
Expand All @@ -217,7 +207,6 @@ public String toString() {
.append("debitCardAllowed", debitCardAllowed)
.append("subscriptionPaymentEnabled", subscriptionPaymentEnabled)
.append("payWithIyzico", payWithIyzico)
.append("captchaToken", captchaToken)
.toString();
}
}

0 comments on commit f1d47f0

Please sign in to comment.