/** * GoToWebinar Node - Version 1 * Discriminator: resource=coorganizer, operation=delete */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1CoorganizerDeleteParams = { resource: 'coorganizer'; operation: 'delete'; /** * Key of the webinar to delete. 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 co-organizer to delete */ coorganizerKey?: string | Expression | PlaceholderValue; /** * 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'. * @default false */ isExternal?: boolean | Expression; }; export type GoToWebinarV1CoorganizerDeleteNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };