![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.DeviceModelInfo Maven / Gradle / Ivy
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