
tsg.ns.wsdl.coop.Address Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.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:core_2023_1.platform.webservices.netsuite.com}Record">
* <sequence>
* <element name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="country" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}Country" minOccurs="0"/>
* <element name="attention" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addressee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addrPhone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addr1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addr2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addr3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="zip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addrText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="override" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Address", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"internalId",
"country",
"attention",
"addressee",
"addrPhone",
"addr1",
"addr2",
"addr3",
"city",
"state",
"zip",
"addrText",
"override",
"customFieldList"
})
public class Address
extends Record
{
protected String internalId;
@XmlSchemaType(name = "string")
protected Country country;
protected String attention;
protected String addressee;
protected String addrPhone;
protected String addr1;
protected String addr2;
protected String addr3;
protected String city;
protected String state;
protected String zip;
protected String addrText;
protected Boolean override;
protected CustomFieldList customFieldList;
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInternalId(String value) {
this.internalId = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link Country }
*
*/
public Country getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link Country }
*
*/
public void setCountry(Country value) {
this.country = value;
}
/**
* Gets the value of the attention property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAttention() {
return attention;
}
/**
* Sets the value of the attention property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAttention(String value) {
this.attention = value;
}
/**
* Gets the value of the addressee property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddressee() {
return addressee;
}
/**
* Sets the value of the addressee property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddressee(String value) {
this.addressee = value;
}
/**
* Gets the value of the addrPhone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddrPhone() {
return addrPhone;
}
/**
* Sets the value of the addrPhone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddrPhone(String value) {
this.addrPhone = value;
}
/**
* Gets the value of the addr1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddr1() {
return addr1;
}
/**
* Sets the value of the addr1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddr1(String value) {
this.addr1 = value;
}
/**
* Gets the value of the addr2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddr2() {
return addr2;
}
/**
* Sets the value of the addr2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddr2(String value) {
this.addr2 = value;
}
/**
* Gets the value of the addr3 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddr3() {
return addr3;
}
/**
* Sets the value of the addr3 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddr3(String value) {
this.addr3 = value;
}
/**
* 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 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 zip property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZip() {
return zip;
}
/**
* Sets the value of the zip property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZip(String value) {
this.zip = value;
}
/**
* Gets the value of the addrText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddrText() {
return addrText;
}
/**
* Sets the value of the addrText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddrText(String value) {
this.addrText = value;
}
/**
* Gets the value of the override property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOverride() {
return override;
}
/**
* Sets the value of the override property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setOverride(Boolean value) {
this.override = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link CustomFieldList }
*
*/
public CustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link CustomFieldList }
*
*/
public void setCustomFieldList(CustomFieldList value) {
this.customFieldList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy