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

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

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


/**
 * HardPhone model information
 */
public class AutomaticLocationUpdatesModelInfo {
    /**
     * Device model identifier
     */
    public String id;
    /**
     * Device name
     */
    public String name;
    /**
     * Device feature or multiple features supported
     * Enum: BLA, Intercom, Paging, HELD
     */
    public String[] features;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy