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

com.ringcentral.paths.webinar.history.v1.company.Index Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.paths.webinar.history.v1.company;

import com.ringcentral.*;
import com.ringcentral.definitions.*;

public class Index {
    public RestClient rc;
    public com.ringcentral.paths.webinar.history.v1.Index parent;

    public Index(com.ringcentral.paths.webinar.history.v1.Index parent) {
        this.parent = parent;
        this.rc = parent.rc;
    }

    public String path() {
        return parent.path(false) + "/company";
    }

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


    public com.ringcentral.paths.webinar.history.v1.company.sessions.Index sessions() {
        return new com.ringcentral.paths.webinar.history.v1.company.sessions.Index(this);
    }


    public com.ringcentral.paths.webinar.history.v1.company.recordings.Index recordings() {
        return this.recordings(null);
    }

    public com.ringcentral.paths.webinar.history.v1.company.recordings.Index recordings(String recordingId) {
        return new com.ringcentral.paths.webinar.history.v1.company.recordings.Index(this, recordingId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy