Skip to content

Commit c23309b

Browse files
false[adyen-sdk-automation] automated change (#1405)
Co-authored-by: Djoyke Reijans <[email protected]>
1 parent c04157e commit c23309b

21 files changed

+1365
-86
lines changed

Diff for: src/main/java/com/adyen/model/balanceplatform/Amount.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public Amount() {
4646
}
4747

4848
/**
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).
5050
*
5151
* @param currency
5252
* @return the current {@code Amount} instance, allowing for method chaining
@@ -57,18 +57,18 @@ public Amount currency(String currency) {
5757
}
5858

5959
/**
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).
6161
* @return currency
6262
*/
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).")
6464
@JsonProperty(JSON_PROPERTY_CURRENCY)
6565
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
6666
public String getCurrency() {
6767
return currency;
6868
}
6969

7070
/**
71-
* 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).
7272
*
7373
* @param currency
7474
*/
@@ -79,7 +79,7 @@ public void setCurrency(String currency) {
7979
}
8080

8181
/**
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).
8383
*
8484
* @param value
8585
* @return the current {@code Amount} instance, allowing for method chaining
@@ -90,18 +90,18 @@ public Amount value(Long value) {
9090
}
9191

9292
/**
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).
9494
* @return value
9595
*/
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).")
9797
@JsonProperty(JSON_PROPERTY_VALUE)
9898
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
9999
public Long getValue() {
100100
return value;
101101
}
102102

103103
/**
104-
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
104+
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
105105
*
106106
* @param value
107107
*/

Diff for: src/main/java/com/adyen/model/balanceplatform/Balance.java

+16-16
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public Balance() {
5858
}
5959

6060
/**
61-
* The current balance minus any reserved balance.
61+
* The balance available for use.
6262
*
6363
* @param available
6464
* @return the current {@code Balance} instance, allowing for method chaining
@@ -69,18 +69,18 @@ public Balance available(Long available) {
6969
}
7070

7171
/**
72-
* The current balance minus any reserved balance.
72+
* The balance available for use.
7373
* @return available
7474
*/
75-
@ApiModelProperty(required = true, value = "The current balance minus any reserved balance.")
75+
@ApiModelProperty(required = true, value = "The balance available for use.")
7676
@JsonProperty(JSON_PROPERTY_AVAILABLE)
7777
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
7878
public Long getAvailable() {
7979
return available;
8080
}
8181

8282
/**
83-
* The current balance minus any reserved balance.
83+
* The balance available for use.
8484
*
8585
* @param available
8686
*/
@@ -91,7 +91,7 @@ public void setAvailable(Long available) {
9191
}
9292

9393
/**
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.
9595
*
9696
* @param balance
9797
* @return the current {@code Balance} instance, allowing for method chaining
@@ -102,18 +102,18 @@ public Balance balance(Long balance) {
102102
}
103103

104104
/**
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.
106106
* @return balance
107107
*/
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.")
109109
@JsonProperty(JSON_PROPERTY_BALANCE)
110110
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
111111
public Long getBalance() {
112112
return balance;
113113
}
114114

115115
/**
116-
* 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.
117117
*
118118
* @param balance
119119
*/
@@ -157,7 +157,7 @@ public void setCurrency(String currency) {
157157
}
158158

159159
/**
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.
161161
*
162162
* @param pending
163163
* @return the current {@code Balance} instance, allowing for method chaining
@@ -168,18 +168,18 @@ public Balance pending(Long pending) {
168168
}
169169

170170
/**
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.
172172
* @return pending
173173
*/
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.")
175175
@JsonProperty(JSON_PROPERTY_PENDING)
176176
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
177177
public Long getPending() {
178178
return pending;
179179
}
180180

181181
/**
182-
* 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.
183183
*
184184
* @param pending
185185
*/
@@ -190,7 +190,7 @@ public void setPending(Long pending) {
190190
}
191191

192192
/**
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.
194194
*
195195
* @param reserved
196196
* @return the current {@code Balance} instance, allowing for method chaining
@@ -201,18 +201,18 @@ public Balance reserved(Long reserved) {
201201
}
202202

203203
/**
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.
205205
* @return reserved
206206
*/
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.")
208208
@JsonProperty(JSON_PROPERTY_RESERVED)
209209
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
210210
public Long getReserved() {
211211
return reserved;
212212
}
213213

214214
/**
215-
* 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).
215+
* The balance currently held in reserve.
216216
*
217217
* @param reserved
218218
*/

Diff for: src/main/java/com/adyen/model/balanceplatform/CounterpartyBankRestriction.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void setOperation(String operation) {
8282
}
8383

8484
/**
85-
* List of counterparty Bank Institutions and the operation.
85+
* The list of counterparty bank institutions to be evaluated.
8686
*
8787
* @param value
8888
* @return the current {@code CounterpartyBankRestriction} instance, allowing for method chaining
@@ -101,18 +101,18 @@ public CounterpartyBankRestriction addValueItem(BankIdentification valueItem) {
101101
}
102102

103103
/**
104-
* List of counterparty Bank Institutions and the operation.
104+
* The list of counterparty bank institutions to be evaluated.
105105
* @return value
106106
*/
107-
@ApiModelProperty(value = "List of counterparty Bank Institutions and the operation.")
107+
@ApiModelProperty(value = "The list of counterparty bank institutions to be evaluated.")
108108
@JsonProperty(JSON_PROPERTY_VALUE)
109109
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
110110
public List<BankIdentification> getValue() {
111111
return value;
112112
}
113113

114114
/**
115-
* List of counterparty Bank Institutions and the operation.
115+
* The list of counterparty bank institutions to be evaluated.
116116
*
117117
* @param value
118118
*/

0 commit comments

Comments
 (0)