/** * GoToWebinar Node - Version 1 * Discriminator: resource=attendee, operation=getDetails */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1AttendeeGetDetailsParams = { resource: 'attendee'; operation: 'getDetails'; /** * 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; /** * The details to retrieve for the attendee */ details?: 'polls' | 'questions' | 'surveyAnswers' | Expression; }; export type GoToWebinarV1AttendeeGetDetailsNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };