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

com.ringcentral.paths.restapi.account.extension.videoconfiguration.Index Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.paths.restapi.account.extension.videoconfiguration;

import com.ringcentral.RestClient;
import com.ringcentral.definitions.UserVideoConfiguration;

public class Index {
    public RestClient rc;
    public com.ringcentral.paths.restapi.account.extension.Index parent;

    public Index(com.ringcentral.paths.restapi.account.extension.Index parent) {
        this.parent = parent;
        this.rc = parent.rc;
    }

    public String path() {
        return parent.path() + "/video-configuration";
    }

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

    /**
     * Returns information about video configuration settings of the current user.
     * 

* HTTP Method: get * Endpoint: /restapi/{apiVersion}/account/{accountId}/extension/{extensionId}/video-configuration * Rate Limit Group: Light * App Permission: ReadAccounts * User Permission: Meetings */ public UserVideoConfiguration get() throws com.ringcentral.RestException, java.io.IOException { okhttp3.ResponseBody rb = this.rc.get(this.path(), null); return com.ringcentral.Utils.gson.fromJson(rb.string(), UserVideoConfiguration.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy