Skip to content

Commit

Permalink
Add com.untill.driver.interfaces.eft.EftGiftCardValidateRequest#amount (
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniilSolovyov and sda authored Oct 18, 2024
1 parent a5189a8 commit b0cbc2e
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public class EftGiftCardValidateRequest extends EftRequest {
public static final String REASON_RELOAD = "reload";
private String cardId;
private String reason;
/**
* Specifies the amount the card is issued or reloaded with
*/
private Boolean amount;

public String getCardId() {
return cardId;
Expand All @@ -29,11 +33,20 @@ public void setReason(String reason) {
this.reason = reason;
}

public Boolean getAmount() {
return amount;
}

public void setAmount(Boolean amount) {
this.amount = amount;
}

@Override
public String toString() {
return "EftGiftCardValidateRequest{"
+ "cardId='" + cardId + '\''
+ ", reason='" + reason + '\''
+ ", amount=" + amount
+ "} " + super.toString();
}
}

0 comments on commit b0cbc2e

Please sign in to comment.