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

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

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


public class DeviceEmergencyInfoAddress {
    /**
     * Name of a customer
     */
    public String customerName;
    /**
     * Street address, line 1 - street address, P.O. box, company name, c/o
     */
    public String street;
    /**
     * Street address, line 2 - apartment, suite, unit, building, floor, etc.
     */
    public String street2;
    /**
     * City name
     */
    public String city;
    /**
     * Zip code
     */
    public String zip;
    /**
     * 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;
    /**
     * Resulting status of emergency address synchronization. Returned
     * for 'Get Device Info' request if `syncEmergencyAddress` parameter is set
     * to 'True'
     * Enum: Verified, Updated, Deleted, NotRequired, Unsupported, Failed
     */
    public String syncStatus;
    /**
     * (Optional) Building name
     */
    public String buildingName;
    /**
     * Building/street number
     */
    public String buildingNumber;
    /**
     * Street type
     */
    public String streetType;

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

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

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

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

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

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

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

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

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

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

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

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

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

    public DeviceEmergencyInfoAddress syncStatus(String syncStatus) {
        this.syncStatus = syncStatus;
        return this;
    }

    public DeviceEmergencyInfoAddress buildingName(String buildingName) {
        this.buildingName = buildingName;
        return this;
    }

    public DeviceEmergencyInfoAddress buildingNumber(String buildingNumber) {
        this.buildingNumber = buildingNumber;
        return this;
    }

    public DeviceEmergencyInfoAddress streetType(String streetType) {
        this.streetType = streetType;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy