
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.AddressSettings Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
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 AddressSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AddressSettings">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="countriesAndStates" type="{http://soap.sforce.com/2006/04/metadata}CountriesAndStates"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AddressSettings", propOrder = {
"countriesAndStates"
})
public class AddressSettings
extends Metadata
{
@XmlElement(required = true)
protected CountriesAndStates countriesAndStates;
/**
* Gets the value of the countriesAndStates property.
*
* @return
* possible object is
* {@link CountriesAndStates }
*
*/
public CountriesAndStates getCountriesAndStates() {
return countriesAndStates;
}
/**
* Sets the value of the countriesAndStates property.
*
* @param value
* allowed object is
* {@link CountriesAndStates }
*
*/
public void setCountriesAndStates(CountriesAndStates value) {
this.countriesAndStates = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy