
tsg.ns.wsdl.coop.PostingTransactionSummaryField 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PostingTransactionSummaryField complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PostingTransactionSummaryField">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="period" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="account" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="parentItem" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="item" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="entity" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="department" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="class" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="location" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="subsidiary" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="book" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PostingTransactionSummaryField", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"period",
"account",
"parentItem",
"item",
"entity",
"department",
"clazz",
"location",
"subsidiary",
"book"
})
public class PostingTransactionSummaryField {
protected Boolean period;
protected Boolean account;
protected Boolean parentItem;
protected Boolean item;
protected Boolean entity;
protected Boolean department;
@XmlElement(name = "class")
protected Boolean clazz;
protected Boolean location;
protected Boolean subsidiary;
protected Boolean book;
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPeriod(Boolean value) {
this.period = value;
}
/**
* Gets the value of the account property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAccount() {
return account;
}
/**
* Sets the value of the account property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAccount(Boolean value) {
this.account = value;
}
/**
* Gets the value of the parentItem property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isParentItem() {
return parentItem;
}
/**
* Sets the value of the parentItem property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setParentItem(Boolean value) {
this.parentItem = value;
}
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setItem(Boolean value) {
this.item = value;
}
/**
* Gets the value of the entity property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEntity() {
return entity;
}
/**
* Sets the value of the entity property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEntity(Boolean value) {
this.entity = value;
}
/**
* Gets the value of the department property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDepartment() {
return department;
}
/**
* Sets the value of the department property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDepartment(Boolean value) {
this.department = value;
}
/**
* Gets the value of the clazz property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isClazz() {
return clazz;
}
/**
* Sets the value of the clazz property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setClazz(Boolean value) {
this.clazz = value;
}
/**
* Gets the value of the location property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setLocation(Boolean value) {
this.location = value;
}
/**
* Gets the value of the subsidiary property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSubsidiary() {
return subsidiary;
}
/**
* Sets the value of the subsidiary property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSubsidiary(Boolean value) {
this.subsidiary = value;
}
/**
* Gets the value of the book property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBook() {
return book;
}
/**
* Sets the value of the book property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBook(Boolean value) {
this.book = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy