Skip to content

Commit 3f98ec7

Browse files
Merge pull request #143 from CyberSource/december-release-2023
December release 2023
2 parents 6b9d559 + ad5f9b0 commit 3f98ec7

File tree

752 files changed

+4389
-5085
lines changed

Some content is hidden

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

752 files changed

+4389
-5085
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ override the new secure-http default setting)*.
3333
{
3434
"require": {
3535
"php": ">=8.0.0",
36-
"cybersource/rest-client-php": "0.0.45"
36+
"cybersource/rest-client-php": "0.0.46"
3737
}
3838
}
3939
```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cybersource/rest-client-php",
3-
"version": "0.0.45",
3+
"version": "0.0.46",
44
"description": "Client SDK for CyberSource REST APIs",
55
"keywords": [
66
"cybersource", "payments", "ecommerce", "merchant", "merchants", "authorize", "visa", "payment", "payment-gateway", "payment-integration", "payment-module", "payment-processing", "payment-service", "payment-methods"

docs/Api/CreateNewWebhooksApi.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ All URIs are relative to *https://apitest.cybersource.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**createWebhook**](CreateNewWebhooksApi.md#createWebhook) | **POST** /notification-subscriptions/v1/webhooks | Create a Webhook
8-
[**findProductToSubscribe**](CreateNewWebhooksApi.md#findProductToSubscribe) | **GET** /notification-subscriptions/v1/products/{organizationId} | Find Products You Can Subscribe To
7+
[**createWebhookSubscription**](CreateNewWebhooksApi.md#createWebhookSubscription) | **POST** /notification-subscriptions/v1/webhooks | Create a Webhook
8+
[**findProductsToSubscribe**](CreateNewWebhooksApi.md#findProductsToSubscribe) | **GET** /notification-subscriptions/v1/products/{organizationId} | Find Products You Can Subscribe To
99
[**saveSymEgressKey**](CreateNewWebhooksApi.md#saveSymEgressKey) | **POST** /kms/egress/v2/keys-sym | Create Webhook Security Keys
1010

1111

12-
# **createWebhook**
13-
> \CyberSource\Model\InlineResponse2013 createWebhook($createWebhook)
12+
# **createWebhookSubscription**
13+
> \CyberSource\Model\InlineResponse2013 createWebhookSubscription($createWebhookRequest)
1414
1515
Create a Webhook
1616

@@ -22,13 +22,13 @@ Create a new webhook subscription. Before creating a webhook, ensure that a secu
2222
require_once(__DIR__ . '/vendor/autoload.php');
2323

2424
$api_instance = new CyberSource\Api\CreateNewWebhooksApi();
25-
$createWebhook = new \CyberSource\Model\CreateWebhook(); // \CyberSource\Model\CreateWebhook | The webhook payload
25+
$createWebhookRequest = new \CyberSource\Model\CreateWebhookRequest(); // \CyberSource\Model\CreateWebhookRequest | The webhook payload
2626

2727
try {
28-
$result = $api_instance->createWebhook($createWebhook);
28+
$result = $api_instance->createWebhookSubscription($createWebhookRequest);
2929
print_r($result);
3030
} catch (Exception $e) {
31-
echo 'Exception when calling CreateNewWebhooksApi->createWebhook: ', $e->getMessage(), PHP_EOL;
31+
echo 'Exception when calling CreateNewWebhooksApi->createWebhookSubscription: ', $e->getMessage(), PHP_EOL;
3232
}
3333
?>
3434
```
@@ -37,7 +37,7 @@ try {
3737

3838
Name | Type | Description | Notes
3939
------------- | ------------- | ------------- | -------------
40-
**createWebhook** | [**\CyberSource\Model\CreateWebhook**](../Model/CreateWebhook.md)| The webhook payload | [optional]
40+
**createWebhookRequest** | [**\CyberSource\Model\CreateWebhookRequest**](../Model/CreateWebhookRequest.md)| The webhook payload | [optional]
4141

4242
### Return type
4343

@@ -50,12 +50,12 @@ No authorization required
5050
### HTTP request headers
5151

5252
- **Content-Type**: application/json;charset=utf-8
53-
- **Accept**: application/hal+json;charset=utf-8
53+
- **Accept**: application/json;charset=utf-8
5454

5555
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
5656

57-
# **findProductToSubscribe**
58-
> \CyberSource\Model\InlineResponse2003[] findProductToSubscribe($organizationId)
57+
# **findProductsToSubscribe**
58+
> \CyberSource\Model\InlineResponse2003[] findProductsToSubscribe($organizationId)
5959
6060
Find Products You Can Subscribe To
6161

@@ -70,10 +70,10 @@ $api_instance = new CyberSource\Api\CreateNewWebhooksApi();
7070
$organizationId = "organizationId_example"; // string | The Organization Identifier.
7171

7272
try {
73-
$result = $api_instance->findProductToSubscribe($organizationId);
73+
$result = $api_instance->findProductsToSubscribe($organizationId);
7474
print_r($result);
7575
} catch (Exception $e) {
76-
echo 'Exception when calling CreateNewWebhooksApi->findProductToSubscribe: ', $e->getMessage(), PHP_EOL;
76+
echo 'Exception when calling CreateNewWebhooksApi->findProductsToSubscribe: ', $e->getMessage(), PHP_EOL;
7777
}
7878
?>
7979
```
@@ -95,7 +95,7 @@ No authorization required
9595
### HTTP request headers
9696

9797
- **Content-Type**: application/json;charset=utf-8
98-
- **Accept**: application/hal+json;charset=utf-8
98+
- **Accept**: application/json;charset=utf-8
9999

100100
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
101101

@@ -146,7 +146,7 @@ No authorization required
146146
### HTTP request headers
147147

148148
- **Content-Type**: application/json;charset=utf-8
149-
- **Accept**: application/hal+json;charset=utf-8
149+
- **Accept**: application/json;charset=utf-8
150150

151151
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
152152

docs/Api/ManageWebhooksApi.md

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ All URIs are relative to *https://apitest.cybersource.com*
55
Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**deleteWebhookSubscription**](ManageWebhooksApi.md#deleteWebhookSubscription) | **DELETE** /notification-subscriptions/v1/webhooks/{webhookId} | Delete a Webhook Subscription
8-
[**getAllWebhooks**](ManageWebhooksApi.md#getAllWebhooks) | **GET** /notification-subscriptions/v1/webhooks | Get Details On All Created Webhooks
9-
[**getWebhookDetails**](ManageWebhooksApi.md#getWebhookDetails) | **GET** /notification-subscriptions/v1/webhooks/{webhookId} | Get Details On a Single Webhook
10-
[**replayPreviousWebhook**](ManageWebhooksApi.md#replayPreviousWebhook) | **POST** /nrtf/v1/webhooks/{webhookId}/replays | Replay Previous Webhooks
8+
[**getWebhookSubscriptionById**](ManageWebhooksApi.md#getWebhookSubscriptionById) | **GET** /notification-subscriptions/v1/webhooks/{webhookId} | Get Details On a Single Webhook
9+
[**getWebhookSubscriptionsByOrg**](ManageWebhooksApi.md#getWebhookSubscriptionsByOrg) | **GET** /notification-subscriptions/v1/webhooks | Get Details On All Created Webhooks
10+
[**replayPreviousWebhooks**](ManageWebhooksApi.md#replayPreviousWebhooks) | **POST** /nrtf/v1/webhooks/{webhookId}/replays | Replay Previous Webhooks
1111
[**saveAsymEgressKey**](ManageWebhooksApi.md#saveAsymEgressKey) | **POST** /kms/egress/v2/keys-asym | Message Level Encryption
1212
[**updateWebhookSubscription**](ManageWebhooksApi.md#updateWebhookSubscription) | **PATCH** /notification-subscriptions/v1/webhooks/{webhookId} | Update a Webhook Subscription
1313

@@ -52,32 +52,30 @@ No authorization required
5252
### HTTP request headers
5353

5454
- **Content-Type**: application/json;charset=utf-8
55-
- **Accept**: application/hal+json;charset=utf-8
55+
- **Accept**: application/json;charset=utf-8
5656

5757
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
5858

59-
# **getAllWebhooks**
60-
> \CyberSource\Model\InlineResponse2004[] getAllWebhooks($organizationId, $productId, $eventType)
59+
# **getWebhookSubscriptionById**
60+
> \CyberSource\Model\InlineResponse2004 getWebhookSubscriptionById($webhookId)
6161
62-
Get Details On All Created Webhooks
62+
Get Details On a Single Webhook
6363

64-
Retrieve a list of all previously created webhooks.
64+
Retrieve the details of a specific webhook by supplying the webhook ID in the path.
6565

6666
### Example
6767
```php
6868
<?php
6969
require_once(__DIR__ . '/vendor/autoload.php');
7070

7171
$api_instance = new CyberSource\Api\ManageWebhooksApi();
72-
$organizationId = "organizationId_example"; // string | The Organization Identifier.
73-
$productId = "productId_example"; // string | The Product Identifier.
74-
$eventType = "eventType_example"; // string | The Event Type.
72+
$webhookId = "webhookId_example"; // string | The webhook Identifier
7573

7674
try {
77-
$result = $api_instance->getAllWebhooks($organizationId, $productId, $eventType);
75+
$result = $api_instance->getWebhookSubscriptionById($webhookId);
7876
print_r($result);
7977
} catch (Exception $e) {
80-
echo 'Exception when calling ManageWebhooksApi->getAllWebhooks: ', $e->getMessage(), PHP_EOL;
78+
echo 'Exception when calling ManageWebhooksApi->getWebhookSubscriptionById: ', $e->getMessage(), PHP_EOL;
8179
}
8280
?>
8381
```
@@ -86,13 +84,11 @@ try {
8684

8785
Name | Type | Description | Notes
8886
------------- | ------------- | ------------- | -------------
89-
**organizationId** | **string**| The Organization Identifier. |
90-
**productId** | **string**| The Product Identifier. |
91-
**eventType** | **string**| The Event Type. |
87+
**webhookId** | **string**| The webhook Identifier |
9288

9389
### Return type
9490

95-
[**\CyberSource\Model\InlineResponse2004[]**](../Model/InlineResponse2004.md)
91+
[**\CyberSource\Model\InlineResponse2004**](../Model/InlineResponse2004.md)
9692

9793
### Authorization
9894

@@ -101,30 +97,32 @@ No authorization required
10197
### HTTP request headers
10298

10399
- **Content-Type**: application/json;charset=utf-8
104-
- **Accept**: application/hal+json;charset=utf-8
100+
- **Accept**: application/json;charset=utf-8
105101

106102
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
107103

108-
# **getWebhookDetails**
109-
> \CyberSource\Model\InlineResponse2004 getWebhookDetails($webhookId)
104+
# **getWebhookSubscriptionsByOrg**
105+
> \CyberSource\Model\InlineResponse2004[] getWebhookSubscriptionsByOrg($organizationId, $productId, $eventType)
110106
111-
Get Details On a Single Webhook
107+
Get Details On All Created Webhooks
112108

113-
Retrieve the details of a specific webhook by supplying the webhook ID in the path.
109+
Retrieve a list of all previously created webhooks.
114110

115111
### Example
116112
```php
117113
<?php
118114
require_once(__DIR__ . '/vendor/autoload.php');
119115

120116
$api_instance = new CyberSource\Api\ManageWebhooksApi();
121-
$webhookId = "webhookId_example"; // string | The webhook Identifier
117+
$organizationId = "organizationId_example"; // string | The Organization Identifier.
118+
$productId = "productId_example"; // string | The Product Identifier.
119+
$eventType = "eventType_example"; // string | The Event Type.
122120

123121
try {
124-
$result = $api_instance->getWebhookDetails($webhookId);
122+
$result = $api_instance->getWebhookSubscriptionsByOrg($organizationId, $productId, $eventType);
125123
print_r($result);
126124
} catch (Exception $e) {
127-
echo 'Exception when calling ManageWebhooksApi->getWebhookDetails: ', $e->getMessage(), PHP_EOL;
125+
echo 'Exception when calling ManageWebhooksApi->getWebhookSubscriptionsByOrg: ', $e->getMessage(), PHP_EOL;
128126
}
129127
?>
130128
```
@@ -133,11 +131,13 @@ try {
133131

134132
Name | Type | Description | Notes
135133
------------- | ------------- | ------------- | -------------
136-
**webhookId** | **string**| The webhook Identifier |
134+
**organizationId** | **string**| The Organization Identifier. |
135+
**productId** | **string**| The Product Identifier. |
136+
**eventType** | **string**| The Event Type. |
137137

138138
### Return type
139139

140-
[**\CyberSource\Model\InlineResponse2004**](../Model/InlineResponse2004.md)
140+
[**\CyberSource\Model\InlineResponse2004[]**](../Model/InlineResponse2004.md)
141141

142142
### Authorization
143143

@@ -146,12 +146,12 @@ No authorization required
146146
### HTTP request headers
147147

148148
- **Content-Type**: application/json;charset=utf-8
149-
- **Accept**: application/hal+json;charset=utf-8
149+
- **Accept**: application/json;charset=utf-8
150150

151151
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
152152

153-
# **replayPreviousWebhook**
154-
> replayPreviousWebhook($webhookId, $replayWebhooks)
153+
# **replayPreviousWebhooks**
154+
> replayPreviousWebhooks($webhookId, $replayWebhooksRequest)
155155
156156
Replay Previous Webhooks
157157

@@ -164,12 +164,12 @@ require_once(__DIR__ . '/vendor/autoload.php');
164164

165165
$api_instance = new CyberSource\Api\ManageWebhooksApi();
166166
$webhookId = "webhookId_example"; // string | The webhook uuid identifier.
167-
$replayWebhooks = new \CyberSource\Model\ReplayWebhooks(); // \CyberSource\Model\ReplayWebhooks | The request query
167+
$replayWebhooksRequest = new \CyberSource\Model\ReplayWebhooksRequest(); // \CyberSource\Model\ReplayWebhooksRequest | The request query
168168

169169
try {
170-
$api_instance->replayPreviousWebhook($webhookId, $replayWebhooks);
170+
$api_instance->replayPreviousWebhooks($webhookId, $replayWebhooksRequest);
171171
} catch (Exception $e) {
172-
echo 'Exception when calling ManageWebhooksApi->replayPreviousWebhook: ', $e->getMessage(), PHP_EOL;
172+
echo 'Exception when calling ManageWebhooksApi->replayPreviousWebhooks: ', $e->getMessage(), PHP_EOL;
173173
}
174174
?>
175175
```
@@ -179,7 +179,7 @@ try {
179179
Name | Type | Description | Notes
180180
------------- | ------------- | ------------- | -------------
181181
**webhookId** | **string**| The webhook uuid identifier. |
182-
**replayWebhooks** | [**\CyberSource\Model\ReplayWebhooks**](../Model/ReplayWebhooks.md)| The request query | [optional]
182+
**replayWebhooksRequest** | [**\CyberSource\Model\ReplayWebhooksRequest**](../Model/ReplayWebhooksRequest.md)| The request query | [optional]
183183

184184
### Return type
185185

@@ -192,7 +192,7 @@ No authorization required
192192
### HTTP request headers
193193

194194
- **Content-Type**: application/json;charset=utf-8
195-
- **Accept**: application/hal+json;charset=utf-8
195+
- **Accept**: application/json;charset=utf-8
196196

197197
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
198198

@@ -243,12 +243,12 @@ No authorization required
243243
### HTTP request headers
244244

245245
- **Content-Type**: application/json;charset=utf-8
246-
- **Accept**: application/hal+json;charset=utf-8
246+
- **Accept**: application/json;charset=utf-8
247247

248248
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
249249

250250
# **updateWebhookSubscription**
251-
> updateWebhookSubscription($webhookId, $updateWebhook)
251+
> updateWebhookSubscription($webhookId, $updateWebhookRequest)
252252
253253
Update a Webhook Subscription
254254

@@ -261,10 +261,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
261261

262262
$api_instance = new CyberSource\Api\ManageWebhooksApi();
263263
$webhookId = "webhookId_example"; // string | The Webhook Identifier.
264-
$updateWebhook = new \CyberSource\Model\UpdateWebhook(); // \CyberSource\Model\UpdateWebhook | The webhook payload or changes to apply.
264+
$updateWebhookRequest = new \CyberSource\Model\UpdateWebhookRequest(); // \CyberSource\Model\UpdateWebhookRequest | The webhook payload or changes to apply.
265265

266266
try {
267-
$api_instance->updateWebhookSubscription($webhookId, $updateWebhook);
267+
$api_instance->updateWebhookSubscription($webhookId, $updateWebhookRequest);
268268
} catch (Exception $e) {
269269
echo 'Exception when calling ManageWebhooksApi->updateWebhookSubscription: ', $e->getMessage(), PHP_EOL;
270270
}
@@ -276,7 +276,7 @@ try {
276276
Name | Type | Description | Notes
277277
------------- | ------------- | ------------- | -------------
278278
**webhookId** | **string**| The Webhook Identifier. |
279-
**updateWebhook** | [**\CyberSource\Model\UpdateWebhook**](../Model/UpdateWebhook.md)| The webhook payload or changes to apply. | [optional]
279+
**updateWebhookRequest** | [**\CyberSource\Model\UpdateWebhookRequest**](../Model/UpdateWebhookRequest.md)| The webhook payload or changes to apply. | [optional]
280280

281281
### Return type
282282

@@ -289,7 +289,7 @@ No authorization required
289289
### HTTP request headers
290290

291291
- **Content-Type**: application/json;charset=utf-8
292-
- **Accept**: application/hal+json;charset=utf-8
292+
- **Accept**: application/json;charset=utf-8
293293

294294
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
295295

docs/Api/ReportSubscriptionsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ No authorization required
199199
200200
Get Subscription for Report Name
201201

202-
View the details of a report subscription, such as the report format or report frequency, using the reports unique name.
202+
View the details of a report subscription, such as the report format or report frequency, using the report's unique name.
203203

204204
### Example
205205
```php

docs/Api/ReportsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ No authorization required
6060
6161
Get Report Based on Report Id
6262

63-
Download a report using the reportId value. If you dont already know this value, you can obtain it using the Retrieve available reports call.
63+
Download a report using the reportId value. If you don't already know this value, you can obtain it using the Retrieve available reports call.
6464

6565
### Example
6666
```php

docs/Model/Boardingv1registrationsProductInformationSelectedProducts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**payments** | [**\CyberSource\Model\PaymentProducts**](PaymentProducts.md) | | [optional]
6+
**payments** | [**\CyberSource\Model\PaymentsProducts**](PaymentsProducts.md) | | [optional]
77
**risk** | [**\CyberSource\Model\RiskProducts**](RiskProducts.md) | | [optional]
88
**commerceSolutions** | [**\CyberSource\Model\CommerceSolutionsProducts**](CommerceSolutionsProducts.md) | | [optional]
99
**valueAddedServices** | [**\CyberSource\Model\ValueAddedServicesProducts**](ValueAddedServicesProducts.md) | | [optional]

docs/Model/CommerceSolutionsProductsAccountUpdater.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscriptionInformation** | [**\CyberSource\Model\PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscriptionInformation** | [**\CyberSource\Model\PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configurationInformation** | [**\CyberSource\Model\CommerceSolutionsProductsAccountUpdaterConfigurationInformation**](CommerceSolutionsProductsAccountUpdaterConfigurationInformation.md) | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/Model/CommerceSolutionsProductsBinLookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscriptionInformation** | [**\CyberSource\Model\PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscriptionInformation** | [**\CyberSource\Model\PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configurationInformation** | [**\CyberSource\Model\CommerceSolutionsProductsBinLookupConfigurationInformation**](CommerceSolutionsProductsBinLookupConfigurationInformation.md) | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/Model/CommerceSolutionsProductsTokenManagement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**subscriptionInformation** | [**\CyberSource\Model\PaymentProductsPayerAuthenticationSubscriptionInformation**](PaymentProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
6+
**subscriptionInformation** | [**\CyberSource\Model\PaymentsProductsPayerAuthenticationSubscriptionInformation**](PaymentsProductsPayerAuthenticationSubscriptionInformation.md) | | [optional]
77
**configurationInformation** | [**\CyberSource\Model\CommerceSolutionsProductsTokenManagementConfigurationInformation**](CommerceSolutionsProductsTokenManagementConfigurationInformation.md) | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)