-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[create-pull-request] automated change (#1243)
Co-authored-by: jillingk <[email protected]> Co-authored-by: Alexandros Moraitis <[email protected]>
- Loading branch information
1 parent
192e430
commit 2cb95e2
Showing
64 changed files
with
1,962 additions
and
262 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,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 AddressRequirement { | ||
/** | ||
* Specifies the required address related fields for a particular route. | ||
*/ | ||
'description'?: string; | ||
/** | ||
* List of address fields. | ||
*/ | ||
'requiredAddressFields'?: Array<string>; | ||
/** | ||
* **addressRequirement** | ||
*/ | ||
'type': AddressRequirement.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "description", | ||
"baseName": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "requiredAddressFields", | ||
"baseName": "requiredAddressFields", | ||
"type": "Array<string>" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "AddressRequirement.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return AddressRequirement.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace AddressRequirement { | ||
export enum TypeEnum { | ||
AddressRequirement = 'addressRequirement' | ||
} | ||
} |
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,62 @@ | ||
/* | ||
* 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 AmountMinMaxRequirement { | ||
/** | ||
* Specifies the eligible amounts for a particular route. | ||
*/ | ||
'description'?: string; | ||
/** | ||
* Maximum amount. | ||
*/ | ||
'max'?: number; | ||
/** | ||
* Minimum amount. | ||
*/ | ||
'min'?: number; | ||
/** | ||
* **amountMinMaxRequirement** | ||
*/ | ||
'type': AmountMinMaxRequirement.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "description", | ||
"baseName": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "max", | ||
"baseName": "max", | ||
"type": "number" | ||
}, | ||
{ | ||
"name": "min", | ||
"baseName": "min", | ||
"type": "number" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "AmountMinMaxRequirement.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return AmountMinMaxRequirement.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace AmountMinMaxRequirement { | ||
export enum TypeEnum { | ||
AmountMinMaxRequirement = 'amountMinMaxRequirement' | ||
} | ||
} |
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,46 @@ | ||
/* | ||
* 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 { AULocalAccountIdentification } from './aULocalAccountIdentification'; | ||
import { BRLocalAccountIdentification } from './bRLocalAccountIdentification'; | ||
import { CALocalAccountIdentification } from './cALocalAccountIdentification'; | ||
import { CZLocalAccountIdentification } from './cZLocalAccountIdentification'; | ||
import { DKLocalAccountIdentification } from './dKLocalAccountIdentification'; | ||
import { HKLocalAccountIdentification } from './hKLocalAccountIdentification'; | ||
import { HULocalAccountIdentification } from './hULocalAccountIdentification'; | ||
import { IbanAccountIdentification } from './ibanAccountIdentification'; | ||
import { NOLocalAccountIdentification } from './nOLocalAccountIdentification'; | ||
import { NZLocalAccountIdentification } from './nZLocalAccountIdentification'; | ||
import { NumberAndBicAccountIdentification } from './numberAndBicAccountIdentification'; | ||
import { PLLocalAccountIdentification } from './pLLocalAccountIdentification'; | ||
import { SELocalAccountIdentification } from './sELocalAccountIdentification'; | ||
import { SGLocalAccountIdentification } from './sGLocalAccountIdentification'; | ||
import { UKLocalAccountIdentification } from './uKLocalAccountIdentification'; | ||
import { USLocalAccountIdentification } from './uSLocalAccountIdentification'; | ||
|
||
export class BankAccount { | ||
/** | ||
* Contains the bank account details. The fields required in this object depend on the country of the bank account and the currency of the transfer. | ||
*/ | ||
'accountIdentification': AULocalAccountIdentification | BRLocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "accountIdentification", | ||
"baseName": "accountIdentification", | ||
"type": "AULocalAccountIdentification | BRLocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return BankAccount.attributeTypeMap; | ||
} | ||
} | ||
|
72 changes: 72 additions & 0 deletions
72
src/typings/balancePlatform/bankAccountIdentificationTypeRequirement.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,72 @@ | ||
/* | ||
* 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 BankAccountIdentificationTypeRequirement { | ||
/** | ||
* List of bank account identification types: eg.; [iban , numberAndBic] | ||
*/ | ||
'bankAccountIdentificationTypes'?: Array<BankAccountIdentificationTypeRequirement.BankAccountIdentificationTypesEnum>; | ||
/** | ||
* Specifies the bank account details for a particular route per required field in this object depending on the country of the bank account and the currency of the transfer. | ||
*/ | ||
'description'?: string; | ||
/** | ||
* **bankAccountIdentificationTypeRequirement** | ||
*/ | ||
'type': BankAccountIdentificationTypeRequirement.TypeEnum; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "bankAccountIdentificationTypes", | ||
"baseName": "bankAccountIdentificationTypes", | ||
"type": "Array<BankAccountIdentificationTypeRequirement.BankAccountIdentificationTypesEnum>" | ||
}, | ||
{ | ||
"name": "description", | ||
"baseName": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "type", | ||
"baseName": "type", | ||
"type": "BankAccountIdentificationTypeRequirement.TypeEnum" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return BankAccountIdentificationTypeRequirement.attributeTypeMap; | ||
} | ||
} | ||
|
||
export namespace BankAccountIdentificationTypeRequirement { | ||
export enum BankAccountIdentificationTypesEnum { | ||
AuLocal = 'auLocal', | ||
BrLocal = 'brLocal', | ||
CaLocal = 'caLocal', | ||
CzLocal = 'czLocal', | ||
DkLocal = 'dkLocal', | ||
HkLocal = 'hkLocal', | ||
HuLocal = 'huLocal', | ||
Iban = 'iban', | ||
Legacy = 'legacy', | ||
NoLocal = 'noLocal', | ||
NumberAndBic = 'numberAndBic', | ||
NzLocal = 'nzLocal', | ||
PlLocal = 'plLocal', | ||
SeLocal = 'seLocal', | ||
SgLocal = 'sgLocal', | ||
UkLocal = 'ukLocal', | ||
UsLocal = 'usLocal' | ||
} | ||
export enum TypeEnum { | ||
BankAccountIdentificationTypeRequirement = 'bankAccountIdentificationTypeRequirement' | ||
} | ||
} |
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,37 @@ | ||
/* | ||
* 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 { BankAccount } from './bankAccount'; | ||
|
||
export class Counterparty { | ||
'bankAccount'?: BankAccount; | ||
/** | ||
* Unique identifier of the [transfer instrument](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments__resParam_id). | ||
*/ | ||
'transferInstrumentId'?: string; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "bankAccount", | ||
"baseName": "bankAccount", | ||
"type": "BankAccount" | ||
}, | ||
{ | ||
"name": "transferInstrumentId", | ||
"baseName": "transferInstrumentId", | ||
"type": "string" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return Counterparty.attributeTypeMap; | ||
} | ||
} | ||
|
Oops, something went wrong.