/** * GoToWebinar Node - Version 1 * Discriminator: resource=attendee, operation=get */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1AttendeeGetParams = { resource: 'attendee'; operation: 'get'; /** * Key of the webinar that the attendee attended. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ webinarKey?: string | Expression; /** * Key of the session that the attendee attended. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ sessionKey?: string | Expression; /** * Registrant key of the attendee at the webinar session */ registrantKey?: string | Expression | PlaceholderValue; }; export type GoToWebinarV1AttendeeGetNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };