n8n/packages/nodes-base/nodes/Salesmate/ActivityInterface.ts

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

12 lines
212 B
TypeScript
Raw Normal View History

export interface IActivity {
title?: string;
owner?: number;
type?: string;
description?: string;
tags?: string;
dueDate?: number;
duration?: number;
isCalendarInvite?: boolean;
isCompleted?: boolean;
}