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

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

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


/**
 * Address for emergency cases. The same emergency address is assigned to all the numbers of one device
 */
public class DeviceEmergencyServiceAddressResourceDefault {
    /**
     *
     */
    public String street;
    /**
     *
     */
    public String street2;
    /**
     *
     */
    public String city;
    /**
     *
     */
    public String zip;
    /**
     *
     */
    public String customerName;
    /**
     * State/province name
     */
    public String state;
    /**
     * Internal identifier of a state
     */
    public String stateId;
    /**
     * ISO code of a state
     */
    public String stateIsoCode;
    /**
     * Full name of a state
     */
    public String stateName;
    /**
     * Internal identifier of a country
     */
    public String countryId;
    /**
     * ISO code of a country
     */
    public String countryIsoCode;
    /**
     * Country name
     */
    public String country;
    /**
     * Full name of a country
     */
    public String countryName;
    /**
     * Specifies if emergency address is out of country
     */
    public Boolean outOfCountry;

    public DeviceEmergencyServiceAddressResourceDefault street(String street) {
        this.street = street;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault street2(String street2) {
        this.street2 = street2;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault city(String city) {
        this.city = city;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault zip(String zip) {
        this.zip = zip;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault customerName(String customerName) {
        this.customerName = customerName;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault state(String state) {
        this.state = state;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault stateId(String stateId) {
        this.stateId = stateId;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault stateIsoCode(String stateIsoCode) {
        this.stateIsoCode = stateIsoCode;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault stateName(String stateName) {
        this.stateName = stateName;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault countryId(String countryId) {
        this.countryId = countryId;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault countryIsoCode(String countryIsoCode) {
        this.countryIsoCode = countryIsoCode;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault country(String country) {
        this.country = country;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault countryName(String countryName) {
        this.countryName = countryName;
        return this;
    }

    public DeviceEmergencyServiceAddressResourceDefault outOfCountry(Boolean outOfCountry) {
        this.outOfCountry = outOfCountry;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy