/** * GoToWebinar Node - Version 1 * Discriminator: resource=panelist, operation=create */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1PanelistCreateParams = { resource: 'panelist'; operation: 'create'; /** * Name of the panelist to create */ name?: string | Expression | PlaceholderValue; /** * Email address of the panelist to create */ email?: string | Expression | PlaceholderValue; /** * Key of the webinar that the panelist will present at. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ webinarKey?: string | Expression; }; export type GoToWebinarV1PanelistCreateNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };