n8n-nodes-gohighlevel
Version:
n8n node for GoHighLevel API v2
21 lines (18 loc) • 373 B
text/typescript
import { IDataObject } from 'n8n-workflow';
export interface ICompany extends IDataObject {
id?: string;
name: string;
website?: string;
industry?: string;
description?: string;
customFields?: Record<string, any>;
tags?: string[];
}
export type CompanyOperation =
| 'create'
| 'update'
| 'delete'
| 'get'
| 'getAll'
| 'addTag'
| 'removeTag';