mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
|
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;
|
||
|
}
|