mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
16 lines
283 B
TypeScript
16 lines
283 B
TypeScript
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[];
|
|
}
|