You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -115,6 +119,39 @@ public void setCurrencyCode(String currencyCode) {
115
119
this.currencyCode = currencyCode;
116
120
}
117
121
122
+
/**
123
+
* The maximum surcharge amount per transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
124
+
*
125
+
* @param maxAmount
126
+
* @return the current {@code Currency} instance, allowing for method chaining
127
+
*/
128
+
publicCurrencymaxAmount(IntegermaxAmount) {
129
+
this.maxAmount = maxAmount;
130
+
returnthis;
131
+
}
132
+
133
+
/**
134
+
* The maximum surcharge amount per transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
135
+
* @return maxAmount
136
+
*/
137
+
@ApiModelProperty(value = "The maximum surcharge amount per transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).")
* The country/region of the card issuer. If used, the surcharge settings only apply to the card issued in that country/region.
95
132
*
96
133
* @param country
97
134
* @return the current {@code ModelConfiguration} instance, allowing for method chaining
@@ -110,18 +147,18 @@ public ModelConfiguration addCountryItem(String countryItem) {
110
147
}
111
148
112
149
/**
113
-
* Countries, to filter different surcharge amounts for domestic or international cards.
150
+
* The country/region of the card issuer. If used, the surcharge settings only apply to the card issued in that country/region.
114
151
* @return country
115
152
*/
116
-
@ApiModelProperty(value = "Countries, to filter different surcharge amounts for domestic or international cards.")
153
+
@ApiModelProperty(value = "The country/region of the card issuer. If used, the surcharge settings only apply to the card issued in that country/region.")
0 commit comments