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

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

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


public class DevicePhoneLinesEmergencyAddressInfo {
    /**
     * Indicates that emergency address is required
     */
    public Boolean required;
    /**
     * Indicates that only local emergency address can be specified
     */
    public Boolean localOnly;

    public DevicePhoneLinesEmergencyAddressInfo required(Boolean required) {
        this.required = required;
        return this;
    }

    public DevicePhoneLinesEmergencyAddressInfo localOnly(Boolean localOnly) {
        this.localOnly = localOnly;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy