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

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

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


/**
 * Company emergency response location details
 */
public class DeviceEmergencyLocationInfo {
    /**
     * Internal identifier of the emergency response location
     */
    public String id;
    /**
     * Location name
     */
    public String name;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy