83 lines
2.1 KiB
Java
83 lines
2.1 KiB
Java
package com.sforce.soap.partner;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public interface IAddress extends com.sforce.soap.partner.ILocation {
|
|
|
|
/**
|
|
* element : city of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getCity();
|
|
|
|
public void setCity(java.lang.String city);
|
|
|
|
/**
|
|
* element : country of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getCountry();
|
|
|
|
public void setCountry(java.lang.String country);
|
|
|
|
/**
|
|
* element : countryCode of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getCountryCode();
|
|
|
|
public void setCountryCode(java.lang.String countryCode);
|
|
|
|
/**
|
|
* element : geocodeAccuracy of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getGeocodeAccuracy();
|
|
|
|
public void setGeocodeAccuracy(java.lang.String geocodeAccuracy);
|
|
|
|
/**
|
|
* element : postalCode of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getPostalCode();
|
|
|
|
public void setPostalCode(java.lang.String postalCode);
|
|
|
|
/**
|
|
* element : state of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getState();
|
|
|
|
public void setState(java.lang.String state);
|
|
|
|
/**
|
|
* element : stateCode of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getStateCode();
|
|
|
|
public void setStateCode(java.lang.String stateCode);
|
|
|
|
/**
|
|
* element : street of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getStreet();
|
|
|
|
public void setStreet(java.lang.String street);
|
|
|
|
|
|
}
|