-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathbankAccountV3AccountIdentification.ts
More file actions
49 lines (42 loc) · 2.61 KB
/
bankAccountV3AccountIdentification.ts
File metadata and controls
49 lines (42 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* The version of the OpenAPI document: v4
*
*
* 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";
/**
* 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.
*/
/**
* @type BankAccountV3AccountIdentification
* Type
* @export
*/
export type BankAccountV3AccountIdentification = AULocalAccountIdentification | BRLocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification;
/**
* @type BankAccountV3AccountIdentificationClass
* 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.
* @export
*/
export class BankAccountV3AccountIdentificationClass {
static readonly discriminator: string = "type";
static readonly mapping: {[index: string]: string} | undefined = undefined;
}