UNPKG

gohl

Version:

Go Highlevel Node Js ease of use library implementation to their API

20 lines (19 loc) 877 B
import { AuthData } from "../interfaces/auth/authdata"; import { IPaymentIntegrationProvider, ICreatePaymentIntegrationProvider, IPaymentIntegrationResponse } from "../interfaces/payment.integration"; export declare class PaymentIntegrations { private authData?; constructor(authData?: AuthData); /** * Create White Label Integration Provider * Documentation - https://highlevel.stoplight.io/docs/integrations/38fc7b49d107d-create-white-label-integration-provider * @param data * @returns */ create(data: ICreatePaymentIntegrationProvider): Promise<IPaymentIntegrationProvider>; /** * List White Label Integration Providers * Documentation - https://highlevel.stoplight.io/docs/integrations/cbdced5c59dfd-list-white-label-integration-providers * @returns */ getAll(): Promise<IPaymentIntegrationResponse>; }