Skip to content

Commit

Permalink
false[adyen-sdk-automation] automated change (#1405)
Browse files Browse the repository at this point in the history
Co-authored-by: Djoyke Reijans <[email protected]>
  • Loading branch information
AdyenAutomationBot and DjoykeAbyah authored Dec 23, 2024
1 parent c04157e commit c23309b
Show file tree
Hide file tree
Showing 21 changed files with 1,365 additions and 86 deletions.
16 changes: 8 additions & 8 deletions src/main/java/com/adyen/model/balanceplatform/Amount.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public Amount() {
}

/**
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
*
* @param currency
* @return the current {@code Amount} instance, allowing for method chaining
Expand All @@ -57,18 +57,18 @@ public Amount currency(String currency) {
}

/**
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
* @return currency
*/
@ApiModelProperty(required = true, value = "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).")
@ApiModelProperty(required = true, value = "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).")
@JsonProperty(JSON_PROPERTY_CURRENCY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCurrency() {
return currency;
}

/**
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
*
* @param currency
*/
Expand All @@ -79,7 +79,7 @@ public void setCurrency(String currency) {
}

/**
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
*
* @param value
* @return the current {@code Amount} instance, allowing for method chaining
Expand All @@ -90,18 +90,18 @@ public Amount value(Long value) {
}

/**
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
* @return value
*/
@ApiModelProperty(required = true, value = "The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).")
@ApiModelProperty(required = true, value = "The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).")
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getValue() {
return value;
}

/**
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
*
* @param value
*/
Expand Down
32 changes: 16 additions & 16 deletions src/main/java/com/adyen/model/balanceplatform/Balance.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public Balance() {
}

/**
* The current balance minus any reserved balance.
* The balance available for use.
*
* @param available
* @return the current {@code Balance} instance, allowing for method chaining
Expand All @@ -69,18 +69,18 @@ public Balance available(Long available) {
}

/**
* The current balance minus any reserved balance.
* The balance available for use.
* @return available
*/
@ApiModelProperty(required = true, value = "The current balance minus any reserved balance.")
@ApiModelProperty(required = true, value = "The balance available for use.")
@JsonProperty(JSON_PROPERTY_AVAILABLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getAvailable() {
return available;
}

/**
* The current balance minus any reserved balance.
* The balance available for use.
*
* @param available
*/
Expand All @@ -91,7 +91,7 @@ public void setAvailable(Long available) {
}

/**
* 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.
* The sum of transactions that have already been settled.
*
* @param balance
* @return the current {@code Balance} instance, allowing for method chaining
Expand All @@ -102,18 +102,18 @@ public Balance balance(Long balance) {
}

/**
* 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.
* The sum of transactions that have already been settled.
* @return balance
*/
@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.")
@ApiModelProperty(required = true, value = "The sum of transactions that have already been settled.")
@JsonProperty(JSON_PROPERTY_BALANCE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getBalance() {
return balance;
}

/**
* 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.
* The sum of transactions that have already been settled.
*
* @param balance
*/
Expand Down Expand Up @@ -157,7 +157,7 @@ public void setCurrency(String currency) {
}

/**
* 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).
* The sum of the transactions that will be settled in the future.
*
* @param pending
* @return the current {@code Balance} instance, allowing for method chaining
Expand All @@ -168,18 +168,18 @@ public Balance pending(Long pending) {
}

/**
* 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).
* The sum of the transactions that will be settled in the future.
* @return pending
*/
@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).")
@ApiModelProperty(value = "The sum of the transactions that will be settled in the future.")
@JsonProperty(JSON_PROPERTY_PENDING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getPending() {
return pending;
}

/**
* 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).
* The sum of the transactions that will be settled in the future.
*
* @param pending
*/
Expand All @@ -190,7 +190,7 @@ public void setPending(Long pending) {
}

/**
* 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).
* The balance currently held in reserve.
*
* @param reserved
* @return the current {@code Balance} instance, allowing for method chaining
Expand All @@ -201,18 +201,18 @@ public Balance reserved(Long reserved) {
}

/**
* 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).
* The balance currently held in reserve.
* @return reserved
*/
@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).")
@ApiModelProperty(required = true, value = "The balance currently held in reserve.")
@JsonProperty(JSON_PROPERTY_RESERVED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getReserved() {
return reserved;
}

/**
* 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).
* The balance currently held in reserve.
*
* @param reserved
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void setOperation(String operation) {
}

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

/**
* List of counterparty Bank Institutions and the operation.
* The list of counterparty bank institutions to be evaluated.
* @return value
*/
@ApiModelProperty(value = "List of counterparty Bank Institutions and the operation.")
@ApiModelProperty(value = "The list of counterparty bank institutions to be evaluated.")
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<BankIdentification> getValue() {
return value;
}

/**
* List of counterparty Bank Institutions and the operation.
* The list of counterparty bank institutions to be evaluated.
*
* @param value
*/
Expand Down
Loading

0 comments on commit c23309b

Please sign in to comment.