diff --git a/src/main/java/com/mangopay/core/enumerations/PayInReferences.java b/src/main/java/com/mangopay/core/enumerations/PayInReferences.java index 55407d92..5055c4d4 100644 --- a/src/main/java/com/mangopay/core/enumerations/PayInReferences.java +++ b/src/main/java/com/mangopay/core/enumerations/PayInReferences.java @@ -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; + } }