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
Copy file name to clipboardExpand all lines: src/main/java/com/adyen/model/balanceplatform/Amount.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public Amount() {
46
46
}
47
47
48
48
/**
49
-
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
49
+
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
50
50
*
51
51
* @param currency
52
52
* @return the current {@code Amount} instance, allowing for method chaining
@@ -57,18 +57,18 @@ public Amount currency(String currency) {
57
57
}
58
58
59
59
/**
60
-
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
60
+
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
61
61
* @return currency
62
62
*/
63
-
@ApiModelProperty(required = true, value = "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).")
63
+
@ApiModelProperty(required = true, value = "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).")
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
71
+
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
72
72
*
73
73
* @param currency
74
74
*/
@@ -79,7 +79,7 @@ public void setCurrency(String currency) {
79
79
}
80
80
81
81
/**
82
-
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
82
+
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
83
83
*
84
84
* @param value
85
85
* @return the current {@code Amount} instance, allowing for method chaining
@@ -90,18 +90,18 @@ public Amount value(Long value) {
90
90
}
91
91
92
92
/**
93
-
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
93
+
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
94
94
* @return value
95
95
*/
96
-
@ApiModelProperty(required = true, value = "The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).")
96
+
@ApiModelProperty(required = true, value = "The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).")
@@ -91,7 +91,7 @@ public void setAvailable(Long available) {
91
91
}
92
92
93
93
/**
94
-
* The current balance of funds in the balance account. These are the funds from all transactions with a value date in the past that have not yet been paid out.
94
+
* The sum of transactions that have already been settled.
95
95
*
96
96
* @param balance
97
97
* @return the current {@code Balance} instance, allowing for method chaining
@@ -102,18 +102,18 @@ public Balance balance(Long balance) {
102
102
}
103
103
104
104
/**
105
-
* The current balance of funds in the balance account. These are the funds from all transactions with a value date in the past that have not yet been paid out.
105
+
* The sum of transactions that have already been settled.
106
106
* @return balance
107
107
*/
108
-
@ApiModelProperty(required = true, value = "The current balance of funds in the balance account. These are the funds from all transactions with a value date in the past that have not yet been paid out.")
108
+
@ApiModelProperty(required = true, value = "The sum of transactions that have already been settled.")
* The current balance of funds in the balance account. These are the funds from all transactions with a value date in the past that have not yet been paid out.
116
+
* The sum of transactions that have already been settled.
117
117
*
118
118
* @param balance
119
119
*/
@@ -157,7 +157,7 @@ public void setCurrency(String currency) {
157
157
}
158
158
159
159
/**
160
-
* The amount of funds that Adyen has processed for this account, but will be settled in a future date. For more information, see how to settle funds for users in your [platform](https://docs.adyen.com/platforms/settle-funds) and [marketplace](https://docs.adyen.com/marketplaces/settle-funds).
160
+
* The sum of the transactions that will be settled in the future.
161
161
*
162
162
* @param pending
163
163
* @return the current {@code Balance} instance, allowing for method chaining
@@ -168,18 +168,18 @@ public Balance pending(Long pending) {
168
168
}
169
169
170
170
/**
171
-
* The amount of funds that Adyen has processed for this account, but will be settled in a future date. For more information, see how to settle funds for users in your [platform](https://docs.adyen.com/platforms/settle-funds) and [marketplace](https://docs.adyen.com/marketplaces/settle-funds).
171
+
* The sum of the transactions that will be settled in the future.
172
172
* @return pending
173
173
*/
174
-
@ApiModelProperty(value = "The amount of funds that Adyen has processed for this account, but will be settled in a future date. For more information, see how to settle funds for users in your [platform](https://docs.adyen.com/platforms/settle-funds) and [marketplace](https://docs.adyen.com/marketplaces/settle-funds).")
174
+
@ApiModelProperty(value = "The sum of the transactions that will be settled in the future.")
* The amount of funds that Adyen has processed for this account, but will be settled in a future date. For more information, see how to settle funds for users in your [platform](https://docs.adyen.com/platforms/settle-funds) and [marketplace](https://docs.adyen.com/marketplaces/settle-funds).
182
+
* The sum of the transactions that will be settled in the future.
183
183
*
184
184
* @param pending
185
185
*/
@@ -190,7 +190,7 @@ public void setPending(Long pending) {
190
190
}
191
191
192
192
/**
193
-
* The amount reserved for payments that have been [authorised](https://docs.adyen.com/issuing/payment-stages/#authorised), but not yet [captured](https://docs.adyen.com/issuing/payment-stages/#captured) by the merchant. Applies only to [Adyen-issued cards](https://docs.adyen.com/issuing).
193
+
* The balance currently held in reserve.
194
194
*
195
195
* @param reserved
196
196
* @return the current {@code Balance} instance, allowing for method chaining
@@ -201,18 +201,18 @@ public Balance reserved(Long reserved) {
201
201
}
202
202
203
203
/**
204
-
* The amount reserved for payments that have been [authorised](https://docs.adyen.com/issuing/payment-stages/#authorised), but not yet [captured](https://docs.adyen.com/issuing/payment-stages/#captured) by the merchant. Applies only to [Adyen-issued cards](https://docs.adyen.com/issuing).
204
+
* The balance currently held in reserve.
205
205
* @return reserved
206
206
*/
207
-
@ApiModelProperty(required = true, value = "The amount reserved for payments that have been [authorised](https://docs.adyen.com/issuing/payment-stages/#authorised), but not yet [captured](https://docs.adyen.com/issuing/payment-stages/#captured) by the merchant. Applies only to [Adyen-issued cards](https://docs.adyen.com/issuing).")
207
+
@ApiModelProperty(required = true, value = "The balance currently held in reserve.")
* The amount reserved for payments that have been [authorised](https://docs.adyen.com/issuing/payment-stages/#authorised), but not yet [captured](https://docs.adyen.com/issuing/payment-stages/#captured) by the merchant. Applies only to [Adyen-issued cards](https://docs.adyen.com/issuing).
0 commit comments