n8n/packages/nodes-base/nodes/Salesforce/NoteInterface.ts

8 lines
121 B
TypeScript
Raw Normal View History

2020-02-10 12:55:28 -08:00
export interface INote {
Title?: string;
ParentId?: string;
Body?: string;
OwnerId?: string;
IsPrivate?: boolean;
}