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

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

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


/**
 * Top IVR Menu extension. Mandatory for MultiLevel mode
 */
public class SiteIVRTopMenu {
    /**
     * Internal identifier of an IVR menu extension
     */
    public String id;
    /**
     * Link to an IVR menu extension resource
     * Format: uri
     */
    public String uri;
    /**
     * Full name of an IVR menu extension user
     */
    public String name;

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

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

    public SiteIVRTopMenu name(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy