1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Keap/FileInterface.ts

9 lines
142 B
TypeScript
Raw Normal View History

2020-04-01 15:10:41 -07:00
export interface IFile {
file_name?: string;
file_data?: string;
contact_id?: number;
is_public?: boolean;
file_association?: string;
}