Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Hubspot/V1/DealInterface.ts
2025-09-08 04:48:28 +08:00

12 lines
233 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IAssociation {
associatedCompanyIds?: number[];
associatedVids?: number[];
}
export interface IDeal {
associations?: IAssociation;
properties?: IDataObject[];
}