gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
23 lines (22 loc) • 519 B
TypeScript
export interface IConversationEmail {
id: string;
conversationId: string;
messageId: string;
status: "scheduled" | "sent" | "cancelled";
scheduledAt: string;
subject: string;
body: string;
from: string;
to: string[];
cc?: string[];
bcc?: string[];
attachments?: string[];
}
export interface IConversationEmailResponse {
email: IConversationEmail;
traceId: string;
}
export interface IConversationEmailCancelResponse {
success: boolean;
traceId: string;
}