Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Hubspot/DealInterface.ts
T
2022-08-17 17:50:24 +02:00

12 lines
228 B
TypeScript

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