UNPKG

gohl

Version:

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

18 lines (17 loc) 400 B
export interface IOpportunityPipelineStage { id: string; name: string; order: number; probability: number; } export interface IOpportunityPipeline { id: string; name: string; locationId: string; isDefault: boolean; stages: IOpportunityPipelineStage[]; } export interface IOpportunityPipelineResponse { pipelines: IOpportunityPipeline[]; traceId: string; }