
tsg.ns.wsdl.coop.ContactAddressbook 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.XmlType;
/**
* Java class for ContactAddressbook complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContactAddressbook">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="defaultShipping" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="defaultBilling" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="addressbookAddress" type="{urn:common_2023_1.platform.webservices.netsuite.com}Address" minOccurs="0"/>
* <element name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContactAddressbook", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"defaultShipping",
"defaultBilling",
"label",
"addressbookAddress",
"internalId"
})
public class ContactAddressbook {
protected Boolean defaultShipping;
protected Boolean defaultBilling;
protected String label;
protected Address addressbookAddress;
protected String internalId;
/**
* Gets the value of the defaultShipping property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDefaultShipping() {
return defaultShipping;
}
/**
* Sets the value of the defaultShipping property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDefaultShipping(Boolean value) {
this.defaultShipping = value;
}
/**
* Gets the value of the defaultBilling property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDefaultBilling() {
return defaultBilling;
}
/**
* Sets the value of the defaultBilling property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDefaultBilling(Boolean value) {
this.defaultBilling = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the addressbookAddress property.
*
* @return
* possible object is
* {@link Address }
*
*/
public Address getAddressbookAddress() {
return addressbookAddress;
}
/**
* Sets the value of the addressbookAddress property.
*
* @param value
* allowed object is
* {@link Address }
*
*/
public void setAddressbookAddress(Address value) {
this.addressbookAddress = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy