com.ringcentral.definitions.DeviceEmergencyServiceAddressResourceFr Maven / Gradle / Ivy
package com.ringcentral.definitions;
/**
* Address for emergency cases. The same emergency address is assigned to all the numbers of one device
*/
public class DeviceEmergencyServiceAddressResourceFr {
/**
*
*/
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;
/**
* (Optional) Building name
*/
public String buildingName;
/**
* Building/street number
*/
public String buildingNumber;
public DeviceEmergencyServiceAddressResourceFr street(String street) {
this.street = street;
return this;
}
public DeviceEmergencyServiceAddressResourceFr street2(String street2) {
this.street2 = street2;
return this;
}
public DeviceEmergencyServiceAddressResourceFr city(String city) {
this.city = city;
return this;
}
public DeviceEmergencyServiceAddressResourceFr zip(String zip) {
this.zip = zip;
return this;
}
public DeviceEmergencyServiceAddressResourceFr customerName(String customerName) {
this.customerName = customerName;
return this;
}
public DeviceEmergencyServiceAddressResourceFr state(String state) {
this.state = state;
return this;
}
public DeviceEmergencyServiceAddressResourceFr stateId(String stateId) {
this.stateId = stateId;
return this;
}
public DeviceEmergencyServiceAddressResourceFr stateIsoCode(String stateIsoCode) {
this.stateIsoCode = stateIsoCode;
return this;
}
public DeviceEmergencyServiceAddressResourceFr stateName(String stateName) {
this.stateName = stateName;
return this;
}
public DeviceEmergencyServiceAddressResourceFr countryId(String countryId) {
this.countryId = countryId;
return this;
}
public DeviceEmergencyServiceAddressResourceFr countryIsoCode(String countryIsoCode) {
this.countryIsoCode = countryIsoCode;
return this;
}
public DeviceEmergencyServiceAddressResourceFr country(String country) {
this.country = country;
return this;
}
public DeviceEmergencyServiceAddressResourceFr countryName(String countryName) {
this.countryName = countryName;
return this;
}
public DeviceEmergencyServiceAddressResourceFr outOfCountry(Boolean outOfCountry) {
this.outOfCountry = outOfCountry;
return this;
}
public DeviceEmergencyServiceAddressResourceFr buildingName(String buildingName) {
this.buildingName = buildingName;
return this;
}
public DeviceEmergencyServiceAddressResourceFr buildingNumber(String buildingNumber) {
this.buildingNumber = buildingNumber;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy