com.ringcentral.definitions.DeviceEmergencyLocationInfo Maven / Gradle / Ivy
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;
}
}