n8n/packages/nodes-base/nodes/Keap/FileInterface.ts
2020-04-02 19:37:52 -04:00

9 lines
142 B
TypeScript

export interface IFile {
file_name?: string;
file_data?: string;
contact_id?: number;
is_public?: boolean;
file_association?: string;
}