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

28 lines
426 B
TypeScript
Executable File

export interface IFormQuery {
includeTodayCount?: boolean;
}
export interface IWebhook {
url: string;
handshakeKey?: string;
metadata?: boolean;
}
interface ISubField {
DefaultVal: string;
ID: string;
Label: string;
}
export interface IField {
Title: string;
Instructions: string;
IsRequired: number;
ClassNames: string;
DefaultVal: string;
Page: number;
Type: string;
ID: string;
SubFields: [ISubField];
}