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?: string
Default: "data"
readonly download?: boolean
Name of the binary property to which to write the data of the read page
readonly limit?: number
Max 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?: string
ID of the page object to retrieve
readonly presentation Id?: string
ID 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?: boolean
Whether to return all results or only up to a given limit
readonly text Ui?: { ... }
Default: {} Type options: {"multipleValues":true}
readonly title?: string
Title of the presentation to create
Default: "serviceAccount"