gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
21 lines (20 loc) • 460 B
TypeScript
export interface IAppointment {
id: string;
calendarId: string;
status: string;
title: string;
appoinmentStatus: string;
assignedUserId: string;
notes?: string;
startTime: string;
endTime: string;
address: string;
locationId: string;
contactId: string;
groupId?: string;
appointmentStatus: string;
users?: string[];
dateAdded: string;
dateUpdated: string;
assignedResources?: string[];
}