Skip to content

Commit 34b2a60

Browse files
author
karen-avetisyan-mc
committed
updating to openapigenerator 7.5.0
1 parent eaa668d commit 34b2a60

149 files changed

Lines changed: 8927 additions & 1952 deletions

File tree

Some content is hidden

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

java/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.github/workflows/maven.yml
12
.gitignore
23
.openapi-generator-ignore
34
.travis.yml
@@ -105,6 +106,7 @@ src/main/java/com/mastercard/developer/mdes_digital_enablement_client/auth/ApiKe
105106
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/auth/Authentication.java
106107
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/auth/HttpBasicAuth.java
107108
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/auth/HttpBearerAuth.java
109+
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/model/AbstractOpenApiSchema.java
108110
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/model/AccountHolderData.java
109111
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/model/AccountHolderDataOutbound.java
110112
src/main/java/com/mastercard/developer/mdes_digital_enablement_client/model/AssetResponseSchema.java

java/.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.1
1+
7.5.0

java/README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
MDES Digital Enablement API
44
- API version: 1.3.0
5-
- Build date: 2021-08-03T18:13:45.340+01:00[Europe/London]
5+
- Build date: 2024-09-24T13:37:45.612619+01:00[Europe/Dublin]
6+
- Generator version: 7.5.0
67

78
These APIs are designed as RPC style stateless web services where each API endpoint represents an operation to be performed. All request and response payloads are sent in the JSON (JavaScript Object Notation) data-interchange format. Each endpoint in the API specifies the HTTP Method used to access it. All strings in request and response objects are to be UTF-8 encoded. Each API URI includes the major and minor version of API that it conforms to. This will allow multiple concurrent versions of the API to be deployed simultaneously.
89
<br><br>
@@ -34,8 +35,8 @@ Java Client Encryption Library available on [GitHub](https://github.com/Masterca
3435
## Requirements
3536

3637
Building the API client library requires:
37-
1. Java 1.7+
38-
2. Maven/Gradle
38+
1. Java 1.8+
39+
2. Maven (3.8.3+)/Gradle (7.2+)
3940

4041
## Installation
4142

@@ -71,7 +72,14 @@ Add this dependency to your project's POM:
7172
Add this dependency to your project's build file:
7273

7374
```groovy
74-
compile "com.mastercard.developer:mdes-digital-enablement-client:1.0.0"
75+
repositories {
76+
mavenCentral() // Needed if the 'mdes-digital-enablement-client' jar has been published to maven central.
77+
mavenLocal() // Needed if the 'mdes-digital-enablement-client' jar has been published to the local maven repo.
78+
}
79+
80+
dependencies {
81+
implementation "com.mastercard.developer:mdes-digital-enablement-client:1.0.0"
82+
}
7583
```
7684

7785
### Others
@@ -198,10 +206,11 @@ Class | Method | HTTP request | Description
198206
- [UnSuspendResponseSchema](docs/UnSuspendResponseSchema.md)
199207

200208

209+
<a id="documentation-for-authorization"></a>
201210
## Documentation for Authorization
202211

203-
All endpoints do not require authorization.
204-
Authentication schemes defined for the API:
212+
Endpoints do not require authorization.
213+
205214

206215
## Recommendation
207216

java/docs/AccountHolderData.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
## Properties
77

8-
Name | Type | Description | Notes
9-
------------ | ------------- | ------------- | -------------
10-
**accountHolderName** | **String** | **(OPTIONAL)** The name of the cardholder in the format LASTNAME/FIRSTNAME or FIRSTNAME LASTNAME | [optional]
11-
**accountHolderAddress** | [**BillingAddress**](BillingAddress.md) | | [optional]
12-
**consumerIdentifier** | **String** | **(OPTIONAL)** Customer Identifier that may be required in some regions. | [optional]
13-
**accountHolderEmailAddress** | **String** | **(OPTIONAL)** The e-mail address of the Account Holder | [optional]
14-
**accountHolderMobilePhoneNumber** | [**PhoneNumber**](PhoneNumber.md) | | [optional]
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**accountHolderName** | **String** | **(OPTIONAL)** The name of the cardholder in the format LASTNAME/FIRSTNAME or FIRSTNAME LASTNAME | [optional] |
11+
|**accountHolderAddress** | [**BillingAddress**](BillingAddress.md) | | [optional] |
12+
|**consumerIdentifier** | **String** | **(OPTIONAL)** Customer Identifier that may be required in some regions. | [optional] |
13+
|**accountHolderEmailAddress** | **String** | **(OPTIONAL)** The e-mail address of the Account Holder | [optional] |
14+
|**accountHolderMobilePhoneNumber** | [**PhoneNumber**](PhoneNumber.md) | | [optional] |
1515

1616

1717

java/docs/AccountHolderDataOutbound.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
## Properties
88

9-
Name | Type | Description | Notes
10-
------------ | ------------- | ------------- | -------------
11-
**accountHolderName** | **String** | **(OPTIONAL)** The name of the cardholder | [optional]
12-
**accountHolderAddress** | [**BillingAddress**](BillingAddress.md) | | [optional]
13-
**accountHolderEmailAddress** | **String** | **(OPTIONAL)** The e-mail address of the Account Holder | [optional]
14-
**accountHolderMobilePhoneNumber** | [**PhoneNumber**](PhoneNumber.md) | | [optional]
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**accountHolderName** | **String** | **(OPTIONAL)** The name of the cardholder | [optional] |
12+
|**accountHolderAddress** | [**BillingAddress**](BillingAddress.md) | | [optional] |
13+
|**accountHolderEmailAddress** | **String** | **(OPTIONAL)** The e-mail address of the Account Holder | [optional] |
14+
|**accountHolderMobilePhoneNumber** | [**PhoneNumber**](PhoneNumber.md) | | [optional] |
1515

1616

1717

java/docs/AssetResponseSchema.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
## Properties
77

8-
Name | Type | Description | Notes
9-
------------ | ------------- | ------------- | -------------
10-
**mediaContents** | [**List&lt;MediaContent&gt;**](MediaContent.md) | | [optional]
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**mediaContents** | [**List&lt;MediaContent&gt;**](MediaContent.md) | | [optional] |
1111

1212

1313

java/docs/AuthenticationMethods.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
## Properties
88

9-
Name | Type | Description | Notes
10-
------------ | ------------- | ------------- | -------------
11-
**id** | **String** | Unique identifier assigned to this Authentication Method. | [optional]
12-
**type** | **String** | Specifies the authentication method type and provided in the tokenize response. See table here - https://developer.mastercard.com/mdes-digital-enablement/documentation/code-and-formats/#authentication-method-codes | [optional]
13-
**value** | **String** | Specifies the authentication method value (meaning varies depending on the authentication method type). | [optional]
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**id** | **String** | Unique identifier assigned to this Authentication Method. | [optional] |
12+
|**type** | **String** | Specifies the authentication method type and provided in the tokenize response. See table here - https://developer.mastercard.com/mdes-digital-enablement/documentation/code-and-formats/#authentication-method-codes | [optional] |
13+
|**value** | **String** | Specifies the authentication method value (meaning varies depending on the authentication method type). | [optional] |
1414

1515

1616

java/docs/BillingAddress.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
## Properties
77

8-
Name | Type | Description | Notes
9-
------------ | ------------- | ------------- | -------------
10-
**line1** | **String** | **(OPTIONAL)** The first line of the street address for the billing address. | [optional]
11-
**line2** | **String** | **(OPTIONAL)** The second line of the street address for the billing address. | [optional]
12-
**city** | **String** | **(OPTIONAL)** The city of the billing address. | [optional]
13-
**countrySubdivision** | **String** | **(OPTIONAL)** The state or country subdivision of the billing address. | [optional]
14-
**postalCode** | **String** | **(OPTIONAL)** The postal of code of the billing address. | [optional]
15-
**country** | **String** | **(OPTIONAL)** The country of the billing address. | [optional]
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**line1** | **String** | **(OPTIONAL)** The first line of the street address for the billing address. | [optional] |
11+
|**line2** | **String** | **(OPTIONAL)** The second line of the street address for the billing address. | [optional] |
12+
|**city** | **String** | **(OPTIONAL)** The city of the billing address. | [optional] |
13+
|**countrySubdivision** | **String** | **(OPTIONAL)** The state or country subdivision of the billing address. | [optional] |
14+
|**postalCode** | **String** | **(OPTIONAL)** The postal of code of the billing address. | [optional] |
15+
|**country** | **String** | **(OPTIONAL)** The country of the billing address. | [optional] |
1616

1717

1818

java/docs/CardAccountDataInbound.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
## Properties
88

9-
Name | Type | Description | Notes
10-
------------ | ------------- | ------------- | -------------
11-
**accountNumber** | **String** | The account number of the credit or debit card. **(CONDITIONAL)** required in a Tokenize, or Get Digital Asset request, unless a valid panUniqueReference or tokenUniqueReference or pushAccountReceipt was given in FundingAccountInfo. **NOTE**:Only 6 digits can be supplied in SearchTokens if the TokenUniqueReference is provided in fundingAccountInfo. | [optional]
12-
**expiryMonth** | **String** | The expiry month for the account. Two numeric digits must be supplied. Only supplied in tokenization requests if panUniqueReference or tokenUniqueReferenceForPanInfo or pushAccountReceipt is not present. **Format: MM** | [optional]
13-
**expiryYear** | **String** | **(Required as minimum for Tokenization)** The expiry year for the account. Only supplied in tokenization requests if panUniqueReference or tokenUniqueReferenceForPanInfo or pushAccountReceipt is not present. **Format: YY** | [optional]
14-
**securityCode** | **String** | **(OPTIONAL)** The security code for the account can optionally be provided for Tokenization. If provided, the validity will be checked. Optional in a Tokenize request, not present otherwise. | [optional]
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**accountNumber** | **String** | The account number of the credit or debit card. **(CONDITIONAL)** required in a Tokenize, or Get Digital Asset request, unless a valid panUniqueReference or tokenUniqueReference or pushAccountReceipt was given in FundingAccountInfo. **NOTE**:Only 6 digits can be supplied in SearchTokens if the TokenUniqueReference is provided in fundingAccountInfo. | [optional] |
12+
|**expiryMonth** | **String** | The expiry month for the account. Two numeric digits must be supplied. Only supplied in tokenization requests if panUniqueReference or tokenUniqueReferenceForPanInfo or pushAccountReceipt is not present. **Format: MM** | [optional] |
13+
|**expiryYear** | **String** | **(Required as minimum for Tokenization)** The expiry year for the account. Only supplied in tokenization requests if panUniqueReference or tokenUniqueReferenceForPanInfo or pushAccountReceipt is not present. **Format: YY** | [optional] |
14+
|**securityCode** | **String** | **(OPTIONAL)** The security code for the account can optionally be provided for Tokenization. If provided, the validity will be checked. Optional in a Tokenize request, not present otherwise. | [optional] |
1515

1616

1717

java/docs/CardAccountDataOutbound.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
## Properties
88

9-
Name | Type | Description | Notes
10-
------------ | ------------- | ------------- | -------------
11-
**accountNumber** | **String** | The account number of the credit or debit card. | [optional]
12-
**expiryMonth** | **String** | The expiry month for the account. Two numeric digits must be supplied. **Format: MM** | [optional]
13-
**expiryYear** | **String** | **(Required as minimum for Tokenization)** The expiry year for the account. **Format: YY** | [optional]
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**accountNumber** | **String** | The account number of the credit or debit card. | [optional] |
12+
|**expiryMonth** | **String** | The expiry month for the account. Two numeric digits must be supplied. **Format: MM** | [optional] |
13+
|**expiryYear** | **String** | **(Required as minimum for Tokenization)** The expiry year for the account. **Format: YY** | [optional] |
1414

1515

1616

0 commit comments

Comments
 (0)