gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
22 lines (21 loc) • 698 B
TypeScript
export interface ICalendarNotificationTime {
timeOffset: number;
unit: "hours" | string;
}
export interface ICalendarNotification {
_id: string;
altType: "calendar" | string;
calendarId: string;
receiverType: "contact" | "guest" | "assignedUser" | "emails";
additionalEmailIds: Array<string>;
channel: "email" | "inApp";
notificationType: "confirm" | "ticket" | "cancellation" | "reminder" | "followup" | "reschedule";
isActive: boolean;
templateId: string;
body: string;
subject: string;
afterTime: Array<ICalendarNotificationTime>;
beforeTime: Array<ICalendarNotificationTime>;
selectedUsers: Array<string>;
deleted: boolean;
}