-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.ts
54 lines (43 loc) · 1.32 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* The version of the OpenAPI document: v71
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { DonationsApi } from "./donationsApi";
import { ModificationsApi } from "./modificationsApi";
import { OrdersApi } from "./ordersApi";
import { PaymentLinksApi } from "./paymentLinksApi";
import { PaymentsApi } from "./paymentsApi";
import { RecurringApi } from "./recurringApi";
import { UtilityApi } from "./utilityApi";
import Service from "../../service";
import Client from "../../client";
export default class CheckoutAPI extends Service {
public constructor(client: Client) {
super(client);
}
public get DonationsApi() {
return new DonationsApi(this.client);
}
public get ModificationsApi() {
return new ModificationsApi(this.client);
}
public get OrdersApi() {
return new OrdersApi(this.client);
}
public get PaymentLinksApi() {
return new PaymentLinksApi(this.client);
}
public get PaymentsApi() {
return new PaymentsApi(this.client);
}
public get RecurringApi() {
return new RecurringApi(this.client);
}
public get UtilityApi() {
return new UtilityApi(this.client);
}
}