/** * Google Slides Node - Version 1 * Discriminator: resource=page, operation=get */ interface Credentials { googleApi: CredentialReference; googleSlidesOAuth2Api: CredentialReference; } /** Get a presentation */ export type GoogleSlidesV1PageGetParams = { resource: 'page'; operation: 'get'; /** * Authentication * @default serviceAccount */ authentication?: 'oAuth2' | 'serviceAccount' | Expression; /** * ID of the presentation to retrieve. Found in the presentation URL: <code>https://docs.google.com/presentation/d/PRESENTATION_ID/edit</code> */ presentationId?: string | Expression | PlaceholderValue; /** * ID of the page object to retrieve */ pageObjectId?: string | Expression | PlaceholderValue; }; export type GoogleSlidesV1PageGetNode = { type: 'n8n-nodes-base.googleSlides'; version: 1; credentials?: Credentials; config: NodeConfig; };