-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.ts
34 lines (27 loc) · 858 Bytes
/
index.ts
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: v68
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { InitializationApi } from "./initializationApi";
import { InstantPayoutsApi } from "./instantPayoutsApi";
import { ReviewingApi } from "./reviewingApi";
import Service from "../../service";
import Client from "../../client";
export default class PayoutAPI extends Service {
public constructor(client: Client) {
super(client);
}
public get InitializationApi() {
return new InitializationApi(this.client);
}
public get InstantPayoutsApi() {
return new InstantPayoutsApi(this.client);
}
public get ReviewingApi() {
return new ReviewingApi(this.client);
}
}