/** * GoToWebinar Node - Version 1 * Discriminator: resource=coorganizer, operation=create */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1CoorganizerCreateParams = { resource: 'coorganizer'; operation: 'create'; /** * Key of the webinar that the co-organizer is hosting. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ webinarKey?: string | Expression; /** * Whether the co-organizer has no GoToWebinar account * @default false */ isExternal?: boolean | Expression; /** * The co-organizer's organizer key for the webinar * @displayOptions.show { isExternal: [false] } */ organizerKey?: string | Expression | PlaceholderValue; /** * The co-organizer's given name * @displayOptions.show { isExternal: [true] } */ givenName?: string | Expression | PlaceholderValue; /** * The co-organizer's email address * @displayOptions.show { isExternal: [true] } */ email?: string | Expression | PlaceholderValue; }; export type GoToWebinarV1CoorganizerCreateNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };