-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathindex.ts
More file actions
34 lines (27 loc) · 824 Bytes
/
index.ts
File metadata and controls
34 lines (27 loc) · 824 Bytes
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
/*
* 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 { CapitalApi } from "./capitalApi";
import { TransactionsApi } from "./transactionsApi";
import { TransfersApi } from "./transfersApi";
import Service from "../../service";
import Client from "../../client";
export default class TransfersAPI extends Service {
public constructor(client: Client) {
super(client);
}
public get CapitalApi() {
return new CapitalApi(this.client);
}
public get TransactionsApi() {
return new TransactionsApi(this.client);
}
public get TransfersApi() {
return new TransfersApi(this.client);
}
}