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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
117 B
TypeScript
Raw Normal View History

2020-04-01 15:10:41 -07:00
export interface INote {
body?: string;
contact_id?: number;
title?: string;
type?: string;
user_id?: number;
}