n8n/packages/nodes-base/nodes/Hubspot/DealInterface.ts
2020-04-08 00:35:50 -04:00

14 lines
231 B
TypeScript

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