interface GoogleSlidesNodeParameters {
authentication?: "oAuth2" | "serviceAccount";
binaryProperty?: string;
download?: boolean;
limit?: number;
operation?:
| "create"
| "get"
| "getSlides"
| "replaceText"
| "getThumbnail";
options?: { revisionId?: string };
pageObjectId?: string;
presentationId?: string;
resource?: "page" | "presentation";
returnAll?: boolean;
textUi?: {
textValues: {
matchCase?: boolean;
pageObjectIds?: unknown[];
replaceText?: string;
text?: string;
}[];
};
title?: string;
}Properties§
§§§§§§§§§§§
readonly authentication?: "oAuth2" | "serviceAccount"§
readonly binary Property?: stringDefault: "data"
readonly download?: booleanName of the binary property to which to write the data of the read page
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly operation?:
| "create"
| "get"
| "getSlides"
| "replaceText"
| "getThumbnail"Default: "create"
readonly options?: { ... }Default: {}
readonly page Object Id?: stringID of the page object to retrieve
readonly presentation Id?: stringID of the presentation to retrieve. Found in the presentation URL: https://docs.google.com/presentation/d/PRESENTATION_ID/edit
readonly resource?: "page" | "presentation"Default: "presentation"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly text Ui?: { ... }Default: {} Type options: {"multipleValues":true}
readonly title?: stringTitle of the presentation to create
Default: "serviceAccount"