Skip to content

Commit

Permalink
shippingAmountExcluded added (#156)
Browse files Browse the repository at this point in the history
Signed-off-by: Bünyamin Yaşar <33955141+byasarcse@users.noreply.github.com>
  • Loading branch information
byasarcse authored Jun 3, 2024
1 parent eafe974 commit fd6e863
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class CreateCheckoutFormInitializeRequest extends Request {
private Boolean debitCardAllowed;
private Boolean subscriptionPaymentEnabled;
private Boolean payWithIyzico;
private Boolean shippingAmountExcluded;

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

public Boolean getShippingAmountExcluded() {
return shippingAmountExcluded;
}

public void setShippingAmountExcluded(Boolean shippingAmountExcluded) {
this.shippingAmountExcluded = shippingAmountExcluded;
}


@Override
public String toString() {
Expand Down

0 comments on commit fd6e863

Please sign in to comment.