Renamed to Keap.

This commit is contained in:
ricardo
2020-04-02 19:37:40 -04:00
parent e8a8d31a97
commit 3a71e2c978
21 changed files with 84 additions and 84 deletions

View File

@@ -0,0 +1,15 @@
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;
}