Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Keap/EmaiIInterface.ts
2025-09-08 04:48:28 +08:00

15 lines
266 B
TypeScript
Executable File

export interface IAttachment {
file_data?: string;
file_name?: string;
}
export interface IEmail {
address_field?: string;
attachments?: IAttachment[];
contacts: number[];
html_content?: string;
plain_content?: string;
subject?: string;
user_id: number;
}