UNPKG

gohl

Version:

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

33 lines (32 loc) 742 B
export interface IPaymentOrderFulfillment { id: string; orderId: string; status: string; items: Array<{ id: string; quantity: number; }>; createdAt: string; updatedAt: string; } export interface ICreatePaymentOrderFulfillment { orderId: string; items: Array<{ id: string; quantity: number; }>; } export interface IPaymentOrderFulfillmentResponse { fulfillment: IPaymentOrderFulfillment; traceId: string; } export interface IPaymentOrderFulfillmentListResponse { fulfillments: IPaymentOrderFulfillment[]; total: number; traceId: string; } export interface IPaymentOrderFulfillmentParams { orderId: string; page?: number; limit?: number; }