Skip to content

Commit 127618d

Browse files
authored
Merge pull request #236 from CyberSource/release/10-FEBRUARY-2026
Automated release commit on 10-FEBRUARY-2026
2 parents f785afd + b2cd78f commit 127618d

File tree

336 files changed

+16198
-13179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+16198
-13179
lines changed

docs/BankAccountValidationApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Method | HTTP request | Description
99

1010
<a name="bankAccountValidationRequest"></a>
1111
# **bankAccountValidationRequest**
12-
> InlineResponse20014 bankAccountValidationRequest(accountValidationsRequest)
12+
> InlineResponse20015 bankAccountValidationRequest(accountValidationsRequest)
1313
1414
Visa Bank Account Validation Service
1515

@@ -25,7 +25,7 @@ The Visa Bank Account Validation Service is a new standalone product designed to
2525
BankAccountValidationApi apiInstance = new BankAccountValidationApi();
2626
AccountValidationsRequest accountValidationsRequest = new AccountValidationsRequest(); // AccountValidationsRequest |
2727
try {
28-
InlineResponse20014 result = apiInstance.bankAccountValidationRequest(accountValidationsRequest);
28+
InlineResponse20015 result = apiInstance.bankAccountValidationRequest(accountValidationsRequest);
2929
System.out.println(result);
3030
} catch (ApiException e) {
3131
System.err.println("Exception when calling BankAccountValidationApi#bankAccountValidationRequest");
@@ -41,7 +41,7 @@ Name | Type | Description | Notes
4141

4242
### Return type
4343

44-
[**InlineResponse20014**](InlineResponse20014.md)
44+
[**InlineResponse20015**](InlineResponse20015.md)
4545

4646
### Authorization
4747

docs/BatchesApi.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Method | HTTP request | Description
1212

1313
<a name="getBatchReport"></a>
1414
# **getBatchReport**
15-
> InlineResponse20013 getBatchReport(batchId)
15+
> InlineResponse20014 getBatchReport(batchId)
1616
1717
Retrieve a Batch Report
1818

@@ -28,7 +28,7 @@ Retrieve a Batch Report
2828
BatchesApi apiInstance = new BatchesApi();
2929
String batchId = "batchId_example"; // String | Unique identification number assigned to the submitted request.
3030
try {
31-
InlineResponse20013 result = apiInstance.getBatchReport(batchId);
31+
InlineResponse20014 result = apiInstance.getBatchReport(batchId);
3232
System.out.println(result);
3333
} catch (ApiException e) {
3434
System.err.println("Exception when calling BatchesApi#getBatchReport");
@@ -44,7 +44,7 @@ Name | Type | Description | Notes
4444

4545
### Return type
4646

47-
[**InlineResponse20013**](InlineResponse20013.md)
47+
[**InlineResponse20014**](InlineResponse20014.md)
4848

4949
### Authorization
5050

@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a name="getBatchStatus"></a>
5959
# **getBatchStatus**
60-
> InlineResponse20012 getBatchStatus(batchId)
60+
> InlineResponse20013 getBatchStatus(batchId)
6161
6262
Retrieve a Batch Status
6363

@@ -73,7 +73,7 @@ Retrieve a Batch Status
7373
BatchesApi apiInstance = new BatchesApi();
7474
String batchId = "batchId_example"; // String | Unique identification number assigned to the submitted request.
7575
try {
76-
InlineResponse20012 result = apiInstance.getBatchStatus(batchId);
76+
InlineResponse20013 result = apiInstance.getBatchStatus(batchId);
7777
System.out.println(result);
7878
} catch (ApiException e) {
7979
System.err.println("Exception when calling BatchesApi#getBatchStatus");
@@ -89,7 +89,7 @@ Name | Type | Description | Notes
8989

9090
### Return type
9191

92-
[**InlineResponse20012**](InlineResponse20012.md)
92+
[**InlineResponse20013**](InlineResponse20013.md)
9393

9494
### Authorization
9595

@@ -102,7 +102,7 @@ No authorization required
102102

103103
<a name="getBatchesList"></a>
104104
# **getBatchesList**
105-
> InlineResponse20011 getBatchesList(offset, limit, fromDate, toDate)
105+
> InlineResponse20012 getBatchesList(offset, limit, fromDate, toDate)
106106
107107
List Batches
108108

@@ -121,7 +121,7 @@ Long limit = 20L; // Long | The maximum number that can be returned in the array
121121
String fromDate = "fromDate_example"; // String | ISO-8601 format: yyyyMMddTHHmmssZ
122122
String toDate = "toDate_example"; // String | ISO-8601 format: yyyyMMddTHHmmssZ
123123
try {
124-
InlineResponse20011 result = apiInstance.getBatchesList(offset, limit, fromDate, toDate);
124+
InlineResponse20012 result = apiInstance.getBatchesList(offset, limit, fromDate, toDate);
125125
System.out.println(result);
126126
} catch (ApiException e) {
127127
System.err.println("Exception when calling BatchesApi#getBatchesList");
@@ -140,7 +140,7 @@ Name | Type | Description | Notes
140140

141141
### Return type
142142

143-
[**InlineResponse20011**](InlineResponse20011.md)
143+
[**InlineResponse20012**](InlineResponse20012.md)
144144

145145
### Authorization
146146

docs/BinLookupApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Method | HTTP request | Description
99

1010
<a name="getAccountInfo"></a>
1111
# **getAccountInfo**
12-
> InlineResponse2012 getAccountInfo(createBinLookupRequest)
12+
> InlineResponse2013 getAccountInfo(createBinLookupRequest)
1313
1414
BIN Lookup API
1515

@@ -25,7 +25,7 @@ The BIN Lookup Service is a versatile business tool that provides card network a
2525
BinLookupApi apiInstance = new BinLookupApi();
2626
CreateBinLookupRequest createBinLookupRequest = new CreateBinLookupRequest(); // CreateBinLookupRequest |
2727
try {
28-
InlineResponse2012 result = apiInstance.getAccountInfo(createBinLookupRequest);
28+
InlineResponse2013 result = apiInstance.getAccountInfo(createBinLookupRequest);
2929
System.out.println(result);
3030
} catch (ApiException e) {
3131
System.err.println("Exception when calling BinLookupApi#getAccountInfo");
@@ -41,7 +41,7 @@ Name | Type | Description | Notes
4141

4242
### Return type
4343

44-
[**InlineResponse2012**](InlineResponse2012.md)
44+
[**InlineResponse2013**](InlineResponse2013.md)
4545

4646
### Authorization
4747

docs/CardProcessingConfigCommon.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
2525
**subMerchantBusinessName** | **String** | Sub-merchant&#39;s business name. Applicable for American Express Direct (amexdirect) processor. Validation details (for selected processors)... &lt;table&gt; &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Processor&lt;/th&gt;&lt;th&gt;Acceptance Type&lt;/th&gt;&lt;th&gt;Required&lt;/th&gt;&lt;th&gt;Min. Length&lt;/th&gt;&lt;th&gt;Max. Length&lt;/th&gt;&lt;th&gt;Regex&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt; &lt;tr&gt;&lt;td&gt;American Express Direct&lt;/td&gt;&lt;td&gt;cnp, cp, hybrid&lt;/td&gt;&lt;td&gt;No&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;37&lt;/td&gt;&lt;td&gt;^[0-9a-zA-Z&amp;#92;-&amp;#92;_&amp;#92;,\\s.]+$&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; | [optional]
2626
**preferCobadgedSecondaryBrand** | **Boolean** | It denotes merchant&#39;s preference on secondary brand for routing in case of co-branded cards. Applicable for EFTPOS processors. | [optional]
2727
**merchantDescriptorInformation** | [**CardProcessingConfigCommonMerchantDescriptorInformation**](CardProcessingConfigCommonMerchantDescriptorInformation.md) | | [optional]
28+
**acquirerAgreement** | [**CardProcessingConfigCommonAcquirerAgreement**](CardProcessingConfigCommonAcquirerAgreement.md) | | [optional]
2829
**governmentControlled** | **Boolean** | Indicates whether the merchant is government controlled. Applicable for VPC processors. | [optional]
2930
**dropBillingInfo** | **Boolean** | This field is used to indicate whether the merchant wants to drop the billing information from the request. If this field is set to true, then the billing information will be dropped from the request. If this field is set to false, then the billing information will be sent in the request. | [optional]
3031

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# CardProcessingConfigCommonAcquirerAgreement
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**acquirerCode** | [**CardProcessingConfigCommonAcquirerAgreementAcquirerCode**](CardProcessingConfigCommonAcquirerAgreementAcquirerCode.md) | | [optional]
8+
9+
10+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
# CardProcessingConfigCommonAcquirerAgreementAcquirerCode
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**acquirerAccountId** | **String** | Account number for the acquirer. | [optional]
8+
**summerBonusStartDate** | **String** | Bonus start date for the summer period. | [optional]
9+
**summerBonusEndDate** | **String** | Bonus end date for the summer period. | [optional]
10+
**summerBonusMonth** | **String** | Bonus month for the summer period . | [optional]
11+
**winterBonusStartDate** | **String** | Bonus start date for the winter period. | [optional]
12+
**winterBonusEndDate** | **String** | Bonus end date for the winter period. | [optional]
13+
**winterBonusMonth** | **String** | Bonus month for the winter period . | [optional]
14+
**numberOfInstallments** | **String** | Comma-separated list of the number of installments. | [optional]
15+
**paymentModes** | **String** | Comma-separated list of payment modes. | [optional]
16+
**numberOfInstallmentPayments** | **String** | Comma-separated list of the number of installment payments. | [optional]
17+
**numberOfIntegratedInstallments** | **String** | Comma-separated list of the number of integrated installments. | [optional]
18+
**numberOfBonusPayments** | **String** | Comma-separated list of the number of bonus payments. | [optional]
19+
**centerName** | **String** | Center name provided by the acquirer. | [optional]
20+
**fbnIdentificationFlag** | **String** | FBN (For Benefit Of) Identification flag. | [optional]
21+
**retailSupported** | **Boolean** | Indicates if retail transactions are supported. | [optional]
22+
**paymentOptions** | [**CardProcessingConfigCommonAcquirerAgreementAcquirerCodePaymentOptions**](CardProcessingConfigCommonAcquirerAgreementAcquirerCodePaymentOptions.md) | | [optional]
23+
24+
25+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# CardProcessingConfigCommonAcquirerAgreementAcquirerCodePaymentOptions
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**jpPaymentOptionType** | **List&lt;String&gt;** | An array of Japan-specific payment options. | [optional]
8+
9+
10+

docs/CreateNewWebhooksApi.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Method | HTTP request | Description
1111

1212
<a name="findProductsToSubscribe"></a>
1313
# **findProductsToSubscribe**
14-
> List&lt;InlineResponse2005&gt; findProductsToSubscribe(organizationId)
14+
> List&lt;InlineResponse2006&gt; findProductsToSubscribe(organizationId)
1515
1616
Find Products You Can Subscribe To
1717

@@ -27,7 +27,7 @@ Retrieve a list of products and event types that your account is eligible for. T
2727
CreateNewWebhooksApi apiInstance = new CreateNewWebhooksApi();
2828
String organizationId = "organizationId_example"; // String | The Organization Identifier.
2929
try {
30-
List<InlineResponse2005> result = apiInstance.findProductsToSubscribe(organizationId);
30+
List<InlineResponse2006> result = apiInstance.findProductsToSubscribe(organizationId);
3131
System.out.println(result);
3232
} catch (ApiException e) {
3333
System.err.println("Exception when calling CreateNewWebhooksApi#findProductsToSubscribe");
@@ -43,7 +43,7 @@ Name | Type | Description | Notes
4343

4444
### Return type
4545

46-
[**List&lt;InlineResponse2005&gt;**](InlineResponse2005.md)
46+
[**List&lt;InlineResponse2006&gt;**](InlineResponse2006.md)
4747

4848
### Authorization
4949

@@ -56,7 +56,7 @@ No authorization required
5656

5757
<a name="notificationSubscriptionsV2WebhooksPost"></a>
5858
# **notificationSubscriptionsV2WebhooksPost**
59-
> InlineResponse2015 notificationSubscriptionsV2WebhooksPost(createWebhook)
59+
> InlineResponse2016 notificationSubscriptionsV2WebhooksPost(createWebhook)
6060
6161
Create a New Webhook Subscription
6262

@@ -72,7 +72,7 @@ Create a new webhook subscription. Before creating a webhook, ensure that a sign
7272
CreateNewWebhooksApi apiInstance = new CreateNewWebhooksApi();
7373
CreateWebhook createWebhook = new CreateWebhook(); // CreateWebhook | The webhook payload
7474
try {
75-
InlineResponse2015 result = apiInstance.notificationSubscriptionsV2WebhooksPost(createWebhook);
75+
InlineResponse2016 result = apiInstance.notificationSubscriptionsV2WebhooksPost(createWebhook);
7676
System.out.println(result);
7777
} catch (ApiException e) {
7878
System.err.println("Exception when calling CreateNewWebhooksApi#notificationSubscriptionsV2WebhooksPost");
@@ -88,7 +88,7 @@ Name | Type | Description | Notes
8888

8989
### Return type
9090

91-
[**InlineResponse2015**](InlineResponse2015.md)
91+
[**InlineResponse2016**](InlineResponse2016.md)
9292

9393
### Authorization
9494

@@ -101,7 +101,7 @@ No authorization required
101101

102102
<a name="saveSymEgressKey"></a>
103103
# **saveSymEgressKey**
104-
> InlineResponse2014 saveSymEgressKey(vCSenderOrganizationId, vCPermissions, vCCorrelationId, saveSymEgressKey)
104+
> InlineResponse2015 saveSymEgressKey(vCSenderOrganizationId, vCPermissions, vCCorrelationId, saveSymEgressKey)
105105
106106
Create Webhook Security Keys
107107

@@ -120,7 +120,7 @@ String vCPermissions = "vCPermissions_example"; // String | Encoded user permiss
120120
String vCCorrelationId = "vCCorrelationId_example"; // String | A globally unique id associated with your request
121121
SaveSymEgressKey saveSymEgressKey = new SaveSymEgressKey(); // SaveSymEgressKey | Provide egress Symmetric key information to save (create or store or refresh)
122122
try {
123-
InlineResponse2014 result = apiInstance.saveSymEgressKey(vCSenderOrganizationId, vCPermissions, vCCorrelationId, saveSymEgressKey);
123+
InlineResponse2015 result = apiInstance.saveSymEgressKey(vCSenderOrganizationId, vCPermissions, vCCorrelationId, saveSymEgressKey);
124124
System.out.println(result);
125125
} catch (ApiException e) {
126126
System.err.println("Exception when calling CreateNewWebhooksApi#saveSymEgressKey");
@@ -139,7 +139,7 @@ Name | Type | Description | Notes
139139

140140
### Return type
141141

142-
[**InlineResponse2014**](InlineResponse2014.md)
142+
[**InlineResponse2015**](InlineResponse2015.md)
143143

144144
### Authorization
145145

docs/DecisionManagerApi.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Method | HTTP request | Description
1313

1414
<a name="actionDecisionManagerCase"></a>
1515
# **actionDecisionManagerCase**
16-
> InlineResponse2002 actionDecisionManagerCase(id, caseManagementActionsRequest)
16+
> InlineResponse2003 actionDecisionManagerCase(id, caseManagementActionsRequest)
1717
1818
Take action on a DM post-transactional case
1919

@@ -30,7 +30,7 @@ DecisionManagerApi apiInstance = new DecisionManagerApi();
3030
String id = "id_example"; // String | An unique identification number generated by Cybersource to identify the submitted request.
3131
CaseManagementActionsRequest caseManagementActionsRequest = new CaseManagementActionsRequest(); // CaseManagementActionsRequest |
3232
try {
33-
InlineResponse2002 result = apiInstance.actionDecisionManagerCase(id, caseManagementActionsRequest);
33+
InlineResponse2003 result = apiInstance.actionDecisionManagerCase(id, caseManagementActionsRequest);
3434
System.out.println(result);
3535
} catch (ApiException e) {
3636
System.err.println("Exception when calling DecisionManagerApi#actionDecisionManagerCase");
@@ -47,7 +47,7 @@ Name | Type | Description | Notes
4747

4848
### Return type
4949

50-
[**InlineResponse2002**](InlineResponse2002.md)
50+
[**InlineResponse2003**](InlineResponse2003.md)
5151

5252
### Authorization
5353

@@ -107,7 +107,7 @@ No authorization required
107107

108108
<a name="commentDecisionManagerCase"></a>
109109
# **commentDecisionManagerCase**
110-
> InlineResponse2011 commentDecisionManagerCase(id, caseManagementCommentsRequest)
110+
> InlineResponse2012 commentDecisionManagerCase(id, caseManagementCommentsRequest)
111111
112112
Add a comment to a DM post-transactional case
113113

@@ -124,7 +124,7 @@ DecisionManagerApi apiInstance = new DecisionManagerApi();
124124
String id = "id_example"; // String | An unique identification number generated by Cybersource to identify the submitted request.
125125
CaseManagementCommentsRequest caseManagementCommentsRequest = new CaseManagementCommentsRequest(); // CaseManagementCommentsRequest |
126126
try {
127-
InlineResponse2011 result = apiInstance.commentDecisionManagerCase(id, caseManagementCommentsRequest);
127+
InlineResponse2012 result = apiInstance.commentDecisionManagerCase(id, caseManagementCommentsRequest);
128128
System.out.println(result);
129129
} catch (ApiException e) {
130130
System.err.println("Exception when calling DecisionManagerApi#commentDecisionManagerCase");
@@ -141,7 +141,7 @@ Name | Type | Description | Notes
141141

142142
### Return type
143143

144-
[**InlineResponse2011**](InlineResponse2011.md)
144+
[**InlineResponse2012**](InlineResponse2012.md)
145145

146146
### Authorization
147147

docs/DeviceDeAssociationApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ No authorization required
5454

5555
<a name="postDeAssociateV3Terminal"></a>
5656
# **postDeAssociateV3Terminal**
57-
> List&lt;InlineResponse2009&gt; postDeAssociateV3Terminal(deviceDeAssociateV3Request)
57+
> List&lt;InlineResponse20010&gt; postDeAssociateV3Terminal(deviceDeAssociateV3Request)
5858
5959
De-associate a device from merchant to account or reseller and from account to reseller
6060

@@ -70,7 +70,7 @@ A device will be de-associated from its current organization and moved up in the
7070
DeviceDeAssociationApi apiInstance = new DeviceDeAssociationApi();
7171
List<DeviceDeAssociateV3Request> deviceDeAssociateV3Request = Arrays.asList(new DeviceDeAssociateV3Request()); // List<DeviceDeAssociateV3Request> | deviceId that has to be de-associated to the destination organizationId.
7272
try {
73-
List<InlineResponse2009> result = apiInstance.postDeAssociateV3Terminal(deviceDeAssociateV3Request);
73+
List<InlineResponse20010> result = apiInstance.postDeAssociateV3Terminal(deviceDeAssociateV3Request);
7474
System.out.println(result);
7575
} catch (ApiException e) {
7676
System.err.println("Exception when calling DeviceDeAssociationApi#postDeAssociateV3Terminal");
@@ -86,7 +86,7 @@ Name | Type | Description | Notes
8686

8787
### Return type
8888

89-
[**List&lt;InlineResponse2009&gt;**](InlineResponse2009.md)
89+
[**List&lt;InlineResponse20010&gt;**](InlineResponse20010.md)
9090

9191
### Authorization
9292

0 commit comments

Comments
 (0)