added lead and activity resources

This commit is contained in:
Ricardo Espinoza
2020-01-21 11:00:40 -05:00
parent 434da06fa7
commit 5d89998eb1
6 changed files with 1951 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
export interface IDeal {
title?: string;
owner?: number;
pipeline?: string;
primaryContact?: number;
primaryCompany?: number;
status?: string;
stage?: string;
source?: string;
estimatedCloseDate?: string;
dealValue?: number;
currency?: string;
priority?: string;
description?: string;
tags?: string;
}