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

9 lines
118 B
TypeScript

export interface INote {
body?: string;
contact_id?: number;
title?: string;
type?: string;
user_id?: number;
}