gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
20 lines (19 loc) • 852 B
TypeScript
import { AuthData } from "../interfaces/auth/authdata";
import { PaymentIntegrations } from "./payments.integrations";
import { PaymentOrderFulfillments } from "./payments.orderfulfillments";
import { PaymentTransactions } from "./payments.transactions";
import { PaymentSubscriptions } from "./payments.subscriptions";
import { PaymentCoupons } from "./payments.coupons";
import { PaymentCustomProviders } from "./payments.customproviders";
import { PaymentOrders } from "./payments.orders";
export declare class Payments {
private authData?;
integrations: PaymentIntegrations;
orders: PaymentOrders;
fulfillments: PaymentOrderFulfillments;
transactions: PaymentTransactions;
subscriptions: PaymentSubscriptions;
coupons: PaymentCoupons;
customProviders: PaymentCustomProviders;
constructor(authData?: AuthData);
}