All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.paths.ai.Index Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.paths.ai;

import com.ringcentral.RestClient;

public class Index {
    public RestClient rc;

    public Index(RestClient rc) {
        this.rc = rc;
    }

    public String path() {
        return "" + "/ai";
    }

    public String path(Boolean withParameter) {
        return path();
    }


    public com.ringcentral.paths.ai.text.Index text() {
        return new com.ringcentral.paths.ai.text.Index(this);
    }


    public com.ringcentral.paths.ai.audio.Index audio() {
        return new com.ringcentral.paths.ai.audio.Index(this);
    }


    public com.ringcentral.paths.ai.status.Index status() {
        return new com.ringcentral.paths.ai.status.Index(this);
    }


    public com.ringcentral.paths.ai.insights.Index insights() {
        return new com.ringcentral.paths.ai.insights.Index(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy