Skip to content

Commit

Permalink
added missing setter for CardHolderName
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Masar committed Aug 6, 2024
1 parent 482fad3 commit 789eaae
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/mangopay/entities/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,11 @@ public String getCardHolderName() {
return cardHolderName;
}

public Card setCardHolderName(String cardHolderName) {
this.cardHolderName = cardHolderName;
return this;
}

/**
* Gets the collection of read-only fields names.
*
Expand Down

0 comments on commit 789eaae

Please sign in to comment.