Interface GoogleSlidesNodeParameters

Source
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"

Default: "serviceAccount"

§readonly binaryProperty?: 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 pageObjectId?: string

ID of the page object to retrieve

§readonly presentationId?: 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 returnAll?: boolean

Whether to return all results or only up to a given limit

§readonly textUi?: { ... }

Default: {} Type options: {"multipleValues":true}

§readonly title?: string

Title of the presentation to create