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