n8n/packages/nodes-base/nodes/Keap/EmaiIInterface.ts

16 lines
267 B
TypeScript
Raw Normal View History

2020-04-01 15:10:41 -07:00
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;
}