/** * GoToWebinar Node - Version 1 * Discriminator: resource=coorganizer, operation=reinvite */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1CoorganizerReinviteParams = { resource: 'coorganizer'; operation: 'reinvite'; /** * By default only internal co-organizers (with a GoToWebinar account) can be deleted. If you want to use this call for external co-organizers you have to set this parameter to 'true'. */ webinarKey?: string | Expression | PlaceholderValue; /** * Key of the co-organizer to reinvite */ coorganizerKey?: string | Expression | PlaceholderValue; /** * Whether the co-organizer has no GoToWebinar account * @default false */ isExternal?: boolean | Expression; }; export type GoToWebinarV1CoorganizerReinviteNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };