Skip to content

Commit 6a9f9dc

Browse files
authored
Merge pull request #69 from CyberSource/dec2020
December 2020 Release
2 parents 42d3239 + fd1bac7 commit 6a9f9dc

File tree

705 files changed

+2535
-724
lines changed

Some content is hidden

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

705 files changed

+2535
-724
lines changed

docs/InstrumentIdentifierApi.md

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Method | HTTP request | Description
99
[**getInstrumentIdentifierPaymentInstrumentsList**](InstrumentIdentifierApi.md#getInstrumentIdentifierPaymentInstrumentsList) | **GET** /tms/v1/instrumentidentifiers/{instrumentIdentifierTokenId}/paymentinstruments | List Payment Instruments for an Instrument Identifier
1010
[**patchInstrumentIdentifier**](InstrumentIdentifierApi.md#patchInstrumentIdentifier) | **PATCH** /tms/v1/instrumentidentifiers/{instrumentIdentifierTokenId} | Update an Instrument Identifier
1111
[**postInstrumentIdentifier**](InstrumentIdentifierApi.md#postInstrumentIdentifier) | **POST** /tms/v1/instrumentidentifiers | Create an Instrument Identifier
12+
[**postInstrumentIdentifierEnrollment**](InstrumentIdentifierApi.md#postInstrumentIdentifierEnrollment) | **POST** /tms/v1/instrumentidentifiers/{instrumentIdentifierTokenId}/enrollment | Enroll an Instrument Identifier for Network Tokenization
1213

1314

1415
<a name="deleteInstrumentIdentifier"></a>
@@ -212,7 +213,7 @@ Create an Instrument Identifier
212213

213214

214215
InstrumentIdentifierApi apiInstance = new InstrumentIdentifierApi();
215-
PostInstrumentIdentifierRequest postInstrumentIdentifierRequest = new PostInstrumentIdentifierRequest(); // PostInstrumentIdentifierRequest | Please specify either a Card, Bank Account or Enrollable Card
216+
PostInstrumentIdentifierRequest postInstrumentIdentifierRequest = new PostInstrumentIdentifierRequest(); // PostInstrumentIdentifierRequest | Specify either a Card, Bank Account or Enrollable Card
216217
String profileId = "profileId_example"; // String | The id of a profile containing user specific TMS configuration.
217218
try {
218219
Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifier result = apiInstance.postInstrumentIdentifier(postInstrumentIdentifierRequest, profileId);
@@ -227,7 +228,7 @@ try {
227228

228229
Name | Type | Description | Notes
229230
------------- | ------------- | ------------- | -------------
230-
**postInstrumentIdentifierRequest** | [**PostInstrumentIdentifierRequest**](PostInstrumentIdentifierRequest.md)| Please specify either a Card, Bank Account or Enrollable Card |
231+
**postInstrumentIdentifierRequest** | [**PostInstrumentIdentifierRequest**](PostInstrumentIdentifierRequest.md)| Specify either a Card, Bank Account or Enrollable Card |
231232
**profileId** | **String**| The id of a profile containing user specific TMS configuration. | [optional]
232233

233234
### Return type
@@ -243,3 +244,49 @@ No authorization required
243244
- **Content-Type**: application/json;charset=utf-8
244245
- **Accept**: application/json;charset=utf-8
245246

247+
<a name="postInstrumentIdentifierEnrollment"></a>
248+
# **postInstrumentIdentifierEnrollment**
249+
> postInstrumentIdentifierEnrollment(instrumentIdentifierTokenId, postInstrumentIdentifierEnrollmentRequest, profileId)
250+
251+
Enroll an Instrument Identifier for Network Tokenization
252+
253+
### Example
254+
```java
255+
// Import classes:
256+
//import Invokers.ApiException;
257+
//import Api.InstrumentIdentifierApi;
258+
259+
260+
InstrumentIdentifierApi apiInstance = new InstrumentIdentifierApi();
261+
String instrumentIdentifierTokenId = "instrumentIdentifierTokenId_example"; // String | The TokenId of a Instrument Identifier.
262+
PostInstrumentIdentifierEnrollmentRequest postInstrumentIdentifierEnrollmentRequest = new PostInstrumentIdentifierEnrollmentRequest(); // PostInstrumentIdentifierEnrollmentRequest | Specify Enrollable Card details
263+
String profileId = "profileId_example"; // String | The id of a profile containing user specific TMS configuration.
264+
try {
265+
apiInstance.postInstrumentIdentifierEnrollment(instrumentIdentifierTokenId, postInstrumentIdentifierEnrollmentRequest, profileId);
266+
} catch (ApiException e) {
267+
System.err.println("Exception when calling InstrumentIdentifierApi#postInstrumentIdentifierEnrollment");
268+
e.printStackTrace();
269+
}
270+
```
271+
272+
### Parameters
273+
274+
Name | Type | Description | Notes
275+
------------- | ------------- | ------------- | -------------
276+
**instrumentIdentifierTokenId** | **String**| The TokenId of a Instrument Identifier. |
277+
**postInstrumentIdentifierEnrollmentRequest** | [**PostInstrumentIdentifierEnrollmentRequest**](PostInstrumentIdentifierEnrollmentRequest.md)| Specify Enrollable Card details |
278+
**profileId** | **String**| The id of a profile containing user specific TMS configuration. | [optional]
279+
280+
### Return type
281+
282+
null (empty response body)
283+
284+
### Authorization
285+
286+
No authorization required
287+
288+
### HTTP request headers
289+
290+
- **Content-Type**: application/json;charset=utf-8
291+
- **Accept**: application/json;charset=utf-8
292+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
# PostInstrumentIdentifierEnrollmentRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**links** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierLinks**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierLinks.md) | | [optional]
8+
**id** | **String** | The id of the Instrument Identifier Token. | [optional]
9+
**object** | **String** | The type of token. Valid values: - instrumentIdentifier | [optional]
10+
**state** | **String** | Issuers state for the card number. Valid values: - ACTIVE - CLOSED : The account has been closed. | [optional]
11+
**type** | **String** | The type of Instrument Identifier. Valid values: - enrollable card | [optional]
12+
**card** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierCard**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierCard.md) | | [optional]
13+
**bankAccount** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierBankAccount**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierBankAccount.md) | | [optional]
14+
**tokenizedCard** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierTokenizedCard**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierTokenizedCard.md) | | [optional]
15+
**issuer** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierIssuer**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierIssuer.md) | | [optional]
16+
**processingInformation** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierProcessingInformation**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierProcessingInformation.md) | | [optional]
17+
**billTo** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierBillTo**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierBillTo.md) | | [optional]
18+
**metadata** | [**Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierMetadata**](Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierMetadata.md) | | [optional]
19+
20+
21+

docs/TssV2TransactionsGet200ResponseProcessingInformation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**paymentSolution** | **String** | Type of digital payment solution for the transaction. Possible Values: - &#x60;visacheckout&#x60;: Visa Checkout. This value is required for Visa Checkout transactions. For details, see &#x60;payment_solution&#x60; field description in [Visa Checkout Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/VCO_SCMP_API/html/) - &#x60;001&#x60;: Apple Pay. - &#x60;004&#x60;: Cybersource In-App Solution. - &#x60;005&#x60;: Masterpass. This value is required for Masterpass transactions on OmniPay Direct. For details, see \&quot;Masterpass\&quot; in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) - &#x60;006&#x60;: Android Pay. - &#x60;007&#x60;: Chase Pay. - &#x60;008&#x60;: Samsung Pay. - &#x60;012&#x60;: Google Pay. | [optional]
7+
**paymentSolution** | **String** | Type of digital payment solution for the transaction. | [optional]
88
**commerceIndicator** | **String** | Type of transaction. Some payment card companies use this information when determining discount rates. #### Used by **Authorization** Required payer authentication transactions; otherwise, optional. **Credit** Required for standalone credits on Chase Paymentech solutions; otherwise, optional. Only &#x60;internet&#x60;, &#x60;moto&#x60;, &#x60;install&#x60;, &#x60;recurring&#x60;, and &#x60;recurring_internet&#x60; are valid values. #### Ingenico ePayments When you omit this field for Ingenico ePayments, the processor uses the default transaction type they have on file for you instead of the default value (listed in Appendix I, \&quot;Commerce Indicators,\&quot; on page 441.) #### Payer Authentication Transactions For the possible values and requirements, see \&quot;Payer Authentication,\&quot; page 195. #### Other Types of Transactions See Appendix I, \&quot;Commerce Indicators,\&quot; on page 441. #### Card Present You must set this field to &#x60;retail&#x60;. This field is required for a card-present transaction. Note that this should ONLY be used when the cardholder and card are present at the time of the transaction. For all keyed transactions originated from a POS terminal where the cardholder and card are not present, commerceIndicator should be submitted as “moto\&quot; | [optional]
99
**businessApplicationId** | **String** | Payouts transaction type. Required for OCT transactions. This field is a pass-through, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. **Note** When the request includes this field, this value overrides the information in your CyberSource account. For valid values, see the &#x60;invoiceHeader_businessApplicationID&#x60; field description in [Payouts Using the Simple Order API.](http://apps.cybersource.com/library/documentation/dev_guides/payouts_SO/Payouts_SO_API.pdf) | [optional]
1010
**authorizationOptions** | [**TssV2TransactionsGet200ResponseProcessingInformationAuthorizationOptions**](TssV2TransactionsGet200ResponseProcessingInformationAuthorizationOptions.md) | | [optional]

docs/V1FileDetailsGet200ResponseFileDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**lastModifiedTime** | [**DateTime**](DateTime.md) | Date and time for the file in PST | [optional]
1111
**date** | [**LocalDate**](LocalDate.md) | Date and time for the file in PST | [optional]
1212
**mimeType** | **String** | &#39;File extension&#39; Valid values: - &#39;application/xml&#39; - &#39;text/csv&#39; - &#39;application/pdf&#39; - &#39;application/octet-stream&#39; | [optional]
13-
**size** | **Integer** | Size of the file in bytes | [optional]
13+
**size** | [**BigDecimal**](BigDecimal.md) | Size of the file in bytes | [optional]
1414

1515

1616

0 commit comments

Comments
 (0)