We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13671a8 commit 6921b68Copy full SHA for 6921b68
src/main/java/ca/paymentrails/paymentrails/Recipient.java
@@ -6,6 +6,7 @@ public class Recipient {
6
7
String id;
8
String routeType;
9
+ String routeMinimum;
10
String estimatedFees;
11
String referenceId;
12
String email;
@@ -117,6 +118,14 @@ public void setRouteType(String routeType) {
117
118
this.routeType = routeType;
119
}
120
121
+ public String getRouteMinimum() {
122
+ return this.routeMinimum;
123
+ }
124
+
125
+ public void setRouteMinimum(String routeMinimum) {
126
+ this.routeMinimum = routeMinimum;
127
128
129
public String getEstimatedFees() {
130
return estimatedFees;
131
0 commit comments