![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.Address Maven / Gradle / Ivy
package com.sforce.soap.partner;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for address complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="address">
* <complexContent>
* <extension base="{urn:partner.soap.sforce.com}location">
* <sequence>
* <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="countryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="geocodeAccuracy" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="postalCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="state" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="stateCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "address", propOrder = {
"city",
"country",
"countryCode",
"geocodeAccuracy",
"postalCode",
"state",
"stateCode",
"street"
})
public class Address
extends Location
{
@XmlElement(required = true, nillable = true)
protected String city;
@XmlElement(required = true, nillable = true)
protected String country;
@XmlElement(required = true, nillable = true)
protected String countryCode;
@XmlElement(required = true, nillable = true)
protected String geocodeAccuracy;
@XmlElement(required = true, nillable = true)
protected String postalCode;
@XmlElement(required = true, nillable = true)
protected String state;
@XmlElement(required = true, nillable = true)
protected String stateCode;
@XmlElement(required = true, nillable = true)
protected String street;
/**
* Gets the value of the city property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCity() {
return city;
}
/**
* Sets the value of the city property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCity(String value) {
this.city = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
/**
* Gets the value of the countryCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryCode() {
return countryCode;
}
/**
* Sets the value of the countryCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryCode(String value) {
this.countryCode = value;
}
/**
* Gets the value of the geocodeAccuracy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeocodeAccuracy() {
return geocodeAccuracy;
}
/**
* Sets the value of the geocodeAccuracy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeocodeAccuracy(String value) {
this.geocodeAccuracy = value;
}
/**
* Gets the value of the postalCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostalCode() {
return postalCode;
}
/**
* Sets the value of the postalCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostalCode(String value) {
this.postalCode = value;
}
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setState(String value) {
this.state = value;
}
/**
* Gets the value of the stateCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStateCode() {
return stateCode;
}
/**
* Sets the value of the stateCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStateCode(String value) {
this.stateCode = value;
}
/**
* Gets the value of the street property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStreet() {
return street;
}
/**
* Sets the value of the street property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStreet(String value) {
this.street = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy