/** * GoToWebinar Node - Version 1 * Discriminator: resource=webinar, operation=getAll */ interface Credentials { goToWebinarOAuth2Api: CredentialReference; } export type GoToWebinarV1WebinarGetAllParams = { resource: 'webinar'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 10 */ limit?: number | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Time Range * @default {} */ times?: { /** Times Properties */ timesProperties?: { /** Start of the datetime range for the webinar */ fromTime?: string | Expression; /** End of the datetime range for the webinar */ toTime?: string | Expression; }; }; }; }; export type GoToWebinarV1WebinarGetAllNode = { type: 'n8n-nodes-base.goToWebinar'; version: 1; credentials?: Credentials; config: NodeConfig; };