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

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

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


/**
 * HardPhone model information
 */
public class DeviceModelInfo {
    /**
     * Addon identifier. For HardPhones of certain types, which are compatible with this add-on identifier
     */
    public String id;
    /**
     * Device name
     */
    public String name;
    /**
     * Add-ons description
     * Required
     */
    public DeviceAddonInfo[] addons;
    /**
     * Device feature or multiple features supported
     * Enum: BLA, Intercom, Paging, HELD
     */
    public String[] features;

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

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

    public DeviceModelInfo addons(DeviceAddonInfo[] addons) {
        this.addons = addons;
        return this;
    }

    public DeviceModelInfo features(String[] features) {
        this.features = features;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy