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

24 lines
431 B
TypeScript
Raw Normal View History

2020-04-07 21:35:50 -07:00
import {
IDataObject,
} from 'n8n-workflow';
export interface IContext {
goToWebinarWebinarKey?: string;
hutk?: string;
ipAddress?: string;
pageId?: string;
pageName?: string;
pageUri?: string;
sfdcCampaignId?: string;
}
export interface IForm {
portalId?: number;
formId?: string;
fields?: IDataObject[];
legalConsentOptions?: IDataObject;
context?: IContext[];
submittedAt?: number;
skipValidation?: boolean;
}