Module googleapis.slides

ballerinax/googleapis.slides Ballerina library

1.5.1

Overview

This is a generated connector for Google Slides API v1 OpenAPI specification. Reads and writes Google Slides presentations.

Prerequisites

Before using this connector in your Ballerina application, complete the following:

Quickstart

To use the Google Slides connector in your Ballerina application, update the .bal file as follows:

Step 1: Import connector

Import the ballerinax/googleapis.slides module into the Ballerina project.

Copy
import ballerinax/googleapis.slides as slides;

Step 2: Create a new connector instance

You can now enter the credentials in the Google Slides client configuration and create Google Slides client by passing the configuration:

Copy
slides:ClientConfig clientConfig = {
    auth: {
        clientId: <CLIENT_ID>,
        clientSecret: <CLIENT_SECRET>,
        refreshUrl: <REFRESH_URL>,
        refreshToken: <REFRESH_TOKEN>
    }
};

slides:Client baseClient = check new Client(clientConfig);

Step 3: Invoke connector operation

  1. You can create a presentation as follows with createPresentation method by passing a Presentation record as parameter.

    Copy
    slides:Presentation createPayload = {
        "title": "Sample Presentation"
    };
    
    slides:Presentation presentation = check baseClient->createPresentation(createPayload);
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/googleapis.slides;Copy

Metadata

Released date: 12 months ago

Version: 1.5.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 1

Current verison: 0


Weekly downloads


Source repository


Keywords

Content & Files/Documents

Cost/Freemium

Vendor/Google


Contributors

Other versions

See more...