gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
16 lines (15 loc) • 403 B
TypeScript
export interface ICustomField {
id?: string;
locationId: string;
model: "contact" | "opportunity" | "all";
name: string;
fieldKey?: string;
placeholder?: string;
dataType: "TEXT" | string;
position?: number;
picklistOptions?: string[];
picklistImageOptions?: [];
isAllowedCustomOption?: boolean;
isMultiFileAllowed?: boolean;
maxFileLimit?: number;
}