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§
Source§readonly download?: boolean
readonly download?: boolean
Name of the binary property to which to write the data of the read page
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Source§readonly operation?:
| "create"
| "get"
| "getSlides"
| "replaceText"
| "getThumbnail"
readonly operation?:
| "create"
| "get"
| "getSlides"
| "replaceText"
| "getThumbnail"
Default: "create"
Source§readonly presentation Id?: string
readonly presentation Id?: string
ID of the presentation to retrieve. Found in the presentation URL: https://docs.google.com/presentation/d/PRESENTATION_ID/edit
Default: "serviceAccount"