mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00: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[];
|
|
}
|