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

com.ringcentral.definitions.DepartmentInfo Maven / Gradle / Ivy

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


/**
 * Please note that legacy 'Department' extension type corresponds to
 * 'Call Queue' extensions in modern RingCentral product terminology
 */
public class DepartmentInfo {
    /**
     * Internal identifier of a department extension
     * Format: uri
     */
    public String id;
    /**
     * Canonical URI of an extension resource
     * Format: uri
     */
    public String uri;
    /**
     * Number of a department extension
     */
    public String extensionNumber;

    public DepartmentInfo id(String id) {
        this.id = id;
        return this;
    }

    public DepartmentInfo uri(String uri) {
        this.uri = uri;
        return this;
    }

    public DepartmentInfo extensionNumber(String extensionNumber) {
        this.extensionNumber = extensionNumber;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy