Deal Get / Getall / Delete / update / create

This commit is contained in:
Rupenieks
2020-05-05 17:44:02 +02:00
parent b2b6656d8d
commit 08220195a2
4 changed files with 236 additions and 138 deletions

View File

@@ -0,0 +1,19 @@
import {
IDataObject,
} from 'n8n-workflow';
export interface IDealCustomProperty {
name: string;
value: string;
}
export interface IDeal {
id?: number,
expected_value?: number,
probability?: number,
name?: string,
close_date?: number,
milestone?: string,
contactIds?: string[],
customData?: IDealCustomProperty[]
}