-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1450 from Adyen/sdk-automation/models
Code generation: update services and models
- Loading branch information
Showing
7 changed files
with
688 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* The version of the OpenAPI document: v71 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit this class manually. | ||
*/ | ||
|
||
|
||
export class AffirmDetails { | ||
/** | ||
* The checkout attempt identifier. | ||
*/ | ||
'checkoutAttemptId'?: string; | ||
/** | ||
* **affirm** | ||
*/ | ||
'type'?: AffirmDetails.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "checkoutAttemptId", | ||
"baseName": "checkoutAttemptId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "AffirmDetails.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return AffirmDetails.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace AffirmDetails { | ||
export enum TypeEnum { | ||
Affirm = 'affirm' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* The version of the OpenAPI document: v71 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit this class manually. | ||
*/ | ||
|
||
|
||
export class PayPayDetails { | ||
/** | ||
* The checkout attempt identifier. | ||
*/ | ||
'checkoutAttemptId'?: string; | ||
/** | ||
* This is the `recurringDetailReference` returned in the response when you created the token. | ||
* | ||
* @deprecated since Adyen Checkout API v49 | ||
* Use `storedPaymentMethodId` instead. | ||
*/ | ||
'recurringDetailReference'?: string; | ||
/** | ||
* This is the `recurringDetailReference` returned in the response when you created the token. | ||
*/ | ||
'storedPaymentMethodId'?: string; | ||
/** | ||
* **paypay** | ||
*/ | ||
'type'?: PayPayDetails.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "checkoutAttemptId", | ||
"baseName": "checkoutAttemptId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "recurringDetailReference", | ||
"baseName": "recurringDetailReference", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "storedPaymentMethodId", | ||
"baseName": "storedPaymentMethodId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "PayPayDetails.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return PayPayDetails.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace PayPayDetails { | ||
export enum TypeEnum { | ||
Paypay = 'paypay' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.