n8n/packages/nodes-base/nodes/Hubspot/DealInterface.ts

13 lines
229 B
TypeScript
Raw Normal View History

2019-12-03 19:21:52 -08:00
import { IDataObject } from "n8n-workflow";
export interface IAssociation {
associatedCompanyIds?: number[];
associatedVids?: number[];
}
export interface IDeal {
2019-12-04 09:21:02 -08:00
associations?: IAssociation;
2019-12-03 19:21:52 -08:00
properties?: IDataObject[];
}