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
@@ -934,7 +936,7 @@ public void setUpdateDate(OffsetDateTime updateDate) {
934
936
}
935
937
936
938
/**
937
-
* A future date, when the funds are expected to be deducted from or credited to the balance account.
939
+
* The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.
938
940
*
939
941
* @param valueDate
940
942
* @return the current {@code TransferEvent} instance, allowing for method chaining
@@ -945,18 +947,18 @@ public TransferEvent valueDate(OffsetDateTime valueDate) {
945
947
}
946
948
947
949
/**
948
-
* A future date, when the funds are expected to be deducted from or credited to the balance account.
950
+
* The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.
949
951
* @return valueDate
950
952
*/
951
-
@ApiModelProperty(value = "A future date, when the funds are expected to be deducted from or credited to the balance account.")
953
+
@ApiModelProperty(value = "The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.")
@@ -934,7 +936,7 @@ public void setUpdateDate(OffsetDateTime updateDate) {
934
936
}
935
937
936
938
/**
937
-
* A future date, when the funds are expected to be deducted from or credited to the balance account.
939
+
* The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.
938
940
*
939
941
* @param valueDate
940
942
* @return the current {@code TransferEvent} instance, allowing for method chaining
@@ -945,18 +947,18 @@ public TransferEvent valueDate(OffsetDateTime valueDate) {
945
947
}
946
948
947
949
/**
948
-
* A future date, when the funds are expected to be deducted from or credited to the balance account.
950
+
* The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.
949
951
* @return valueDate
950
952
*/
951
-
@ApiModelProperty(value = "A future date, when the funds are expected to be deducted from or credited to the balance account.")
953
+
@ApiModelProperty(value = "The date when the funds are expected to be deducted from or credited to the balance account. This date can be in either the past or future.")
Copy file name to clipboardExpand all lines: src/main/java/com/adyen/service/transfers/TransfersApi.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -110,8 +110,8 @@ public void cancelInitiatedTransfers(CancelTransfersRequest cancelTransfersReque
110
110
/**
111
111
* Get all transfers
112
112
*
113
-
* @param createdSince {@link OffsetDateTime } Only include transfers that have been created on or after this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
114
-
* @param createdUntil {@link OffsetDateTime } Only include transfers that have been created on or before this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
113
+
* @param createdSince {@link OffsetDateTime } Only include transfers that have been created on or after this point in time. The value must be in ISO 8601 format and not earlier than 6 months before the `createdUntil` date. For example, **2021-05-30T15:07:40Z**. (required)
114
+
* @param createdUntil {@link OffsetDateTime } Only include transfers that have been created on or before this point in time. The value must be in ISO 8601 format and not later than 6 months after the `createdSince` date. For example, **2021-05-30T15:07:40Z**. (required)
115
115
* @return {@link FindTransfersResponse }
116
116
* @throws ApiException if fails to make API call
117
117
*/
@@ -128,8 +128,8 @@ public FindTransfersResponse getAllTransfers(OffsetDateTime createdSince, Offset
128
128
* @param paymentInstrumentId {@link String } Query: The unique identifier of the [payment instrument](https://docs.adyen.com/api-explorer/balanceplatform/latest/get/paymentInstruments/_id_). To use this parameter, you must also provide a `balanceAccountId`, `accountHolderId`, or `balancePlatform`. The `paymentInstrumentId` must be related to the `balanceAccountId` or `accountHolderId` that you provide. (optional)
129
129
* @param reference {@link String } Query: The reference you provided in the POST [/transfers](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers) request (optional)
130
130
* @param category {@link String } Query: The type of transfer. Possible values: - **bank**: Transfer to a [transfer instrument](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments__resParam_id) or a bank account. - **internal**: Transfer to another [balance account](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/balanceAccounts__resParam_id) within your platform. - **issuedCard**: Transfer initiated by a Adyen-issued card. - **platformPayment**: Fund movements related to payments that are acquired for your users. (optional)
131
-
* @param createdSince {@link OffsetDateTime } Query: Only include transfers that have been created on or after this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
132
-
* @param createdUntil {@link OffsetDateTime } Query: Only include transfers that have been created on or before this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
131
+
* @param createdSince {@link OffsetDateTime } Query: Only include transfers that have been created on or after this point in time. The value must be in ISO 8601 format and not earlier than 6 months before the `createdUntil` date. For example, **2021-05-30T15:07:40Z**. (required)
132
+
* @param createdUntil {@link OffsetDateTime } Query: Only include transfers that have been created on or before this point in time. The value must be in ISO 8601 format and not later than 6 months after the `createdSince` date. For example, **2021-05-30T15:07:40Z**. (required)
133
133
* @param cursor {@link String } Query: The `cursor` returned in the links of the previous response. (optional)
134
134
* @param limit {@link Integer } Query: The number of items returned per page, maximum of 100 items. By default, the response returns 10 items per page. (optional)
135
135
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
0 commit comments