-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checkout Automation PR and fix Classic Payments (#1239)
* [create-pull-request] automated change * checkout automation branch and fix the classic platforms --------- Co-authored-by: Adyen Automation <[email protected]>
- Loading branch information
1 parent
68b3f98
commit 61fcdeb
Showing
109 changed files
with
655 additions
and
9,461 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* The version of the OpenAPI document: v2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit this class manually. | ||
*/ | ||
|
||
import { CapabilityProblemEntity } from './capabilityProblemEntity'; | ||
import { VerificationError } from './verificationError'; | ||
|
||
export class CapabilityProblem { | ||
'entity'?: CapabilityProblemEntity; | ||
/** | ||
* Contains information about the verification error. | ||
*/ | ||
'verificationErrors'?: Array<VerificationError>; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "entity", | ||
"baseName": "entity", | ||
"type": "CapabilityProblemEntity" | ||
}, | ||
{ | ||
"name": "verificationErrors", | ||
"baseName": "verificationErrors", | ||
"type": "Array<VerificationError>" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return CapabilityProblem.attributeTypeMap; | ||
} | ||
} | ||
|
Oops, something went wrong.