UNPKG

gohl

Version:

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

21 lines (20 loc) 922 B
import { AuthData } from "../interfaces/auth/authdata"; import { ICreatePaymentOrderFulfillment, IPaymentOrderFulfillmentResponse, IPaymentOrderFulfillmentListResponse, IPaymentOrderFulfillmentParams } from "../interfaces/payment.fulfillment"; export declare class PaymentOrderFulfillments { private authData?; constructor(authData?: AuthData); /** * Create Order Fulfillment * Documentation - https://highlevel.stoplight.io/docs/integrations/1e091099a92c6-create-order-fulfillment * @param data * @returns */ create(data: ICreatePaymentOrderFulfillment): Promise<IPaymentOrderFulfillmentResponse>; /** * List Fulfillments * Documentation - https://highlevel.stoplight.io/docs/integrations/670fe5beec7de-list-fulfillment * @param params * @returns */ getAll(params: IPaymentOrderFulfillmentParams): Promise<IPaymentOrderFulfillmentListResponse>; }