-
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.
* [reformat][adyen-sdk-automation] automated change * style(fmt): code formatted * Update transferRoute.ts removed faulty import --------- Co-authored-by: AdyenAutomationBot <Adyen Automation [email protected]> Co-authored-by: Djoyke Reijans <[email protected]>
- Loading branch information
1 parent
316aec5
commit d10651b
Showing
31 changed files
with
542 additions
and
16 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
44 changes: 44 additions & 0 deletions
44
src/typings/balancePlatform/amountNonZeroDecimalsRequirement.ts
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: v2 | ||
* | ||
* | ||
* 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 AmountNonZeroDecimalsRequirement { | ||
/** | ||
* Specifies for which routes the amount in a transfer request must have no non-zero decimal places, so the transfer can only be processed if the amount consists of round numbers. | ||
*/ | ||
'description'?: string; | ||
/** | ||
* **amountNonZeroDecimalsRequirement** | ||
*/ | ||
'type': AmountNonZeroDecimalsRequirement.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "description", | ||
"baseName": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "AmountNonZeroDecimalsRequirement.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return AmountNonZeroDecimalsRequirement.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace AmountNonZeroDecimalsRequirement { | ||
export enum TypeEnum { | ||
AmountNonZeroDecimalsRequirement = 'amountNonZeroDecimalsRequirement' | ||
} | ||
} |
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
53 changes: 53 additions & 0 deletions
53
src/typings/balancePlatform/ibanAccountIdentificationRequirement.ts
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,53 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
|
||
export class IbanAccountIdentificationRequirement { | ||
/** | ||
* Specifies the allowed prefixes for the international bank account number as defined in the ISO-13616 standard. | ||
*/ | ||
'description'?: string; | ||
/** | ||
* Contains the list of allowed prefixes for international bank accounts. For example: NL, US, UK. | ||
*/ | ||
'ibanPrefixes'?: Array<string>; | ||
/** | ||
* **ibanAccountIdentificationRequirement** | ||
*/ | ||
'type': IbanAccountIdentificationRequirement.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "description", | ||
"baseName": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "ibanPrefixes", | ||
"baseName": "ibanPrefixes", | ||
"type": "Array<string>" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "IbanAccountIdentificationRequirement.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return IbanAccountIdentificationRequirement.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace IbanAccountIdentificationRequirement { | ||
export enum TypeEnum { | ||
IbanAccountIdentificationRequirement = 'ibanAccountIdentificationRequirement' | ||
} | ||
} |
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
Oops, something went wrong.