Skip to content

Commit

Permalink
Merge pull request #345 from toni07/master
Browse files Browse the repository at this point in the history
Make `PayInReferences` attributes readable and instantiable
  • Loading branch information
alexxmattei authored Jan 9, 2025
2 parents bd9da80 + 7cbce0d commit 0ee888f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/mangopay/core/enumerations/PayInReferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,17 @@ public class PayInReferences {
private String type;

private String value;

public PayInReferences(String type, String value) {
this.type = type;
this.value = value;
}

public String getType() {
return type;
}

public String getValue() {
return value;
}
}

0 comments on commit 0ee888f

Please sign in to comment.