Skip to content

Commit 6921b68

Browse files
committed
added routeMinimum attribute
1 parent 13671a8 commit 6921b68

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/ca/paymentrails/paymentrails/Recipient.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ public class Recipient {
66

77
String id;
88
String routeType;
9+
String routeMinimum;
910
String estimatedFees;
1011
String referenceId;
1112
String email;
@@ -117,6 +118,14 @@ public void setRouteType(String routeType) {
117118
this.routeType = routeType;
118119
}
119120

121+
public String getRouteMinimum() {
122+
return this.routeMinimum;
123+
}
124+
125+
public void setRouteMinimum(String routeMinimum) {
126+
this.routeMinimum = routeMinimum;
127+
}
128+
120129
public String getEstimatedFees() {
121130
return estimatedFees;
122131
}

0 commit comments

Comments
 (0)