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

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

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


/**
 * Emergency response location information
 */
public class EmergencyLocationInfo {
    /**
     * Internal identifier of an emergency response location
     * Required
     */
    public String id;
    /**
     * Emergency response location name
     */
    public String name;
    /**
     * Address format ID
     */
    public String addressFormatId;

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

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

    public EmergencyLocationInfo addressFormatId(String addressFormatId) {
        this.addressFormatId = addressFormatId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy