All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.PostingTransactionSummary 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 PostingTransactionSummary complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PostingTransactionSummary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="period" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="account" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="parentItem" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="entity" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="subsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="book" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostingTransactionSummary", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = { "period", "account", "parentItem", "item", "entity", "department", "clazz", "location", "subsidiary", "book", "amount" }) public class PostingTransactionSummary { protected RecordRef period; protected RecordRef account; protected RecordRef parentItem; protected RecordRef item; protected RecordRef entity; protected RecordRef department; @XmlElement(name = "class") protected RecordRef clazz; protected RecordRef location; protected RecordRef subsidiary; protected RecordRef book; protected double amount; /** * Gets the value of the period property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getPeriod() { return period; } /** * Sets the value of the period property. * * @param value * allowed object is * {@link RecordRef } * */ public void setPeriod(RecordRef value) { this.period = value; } /** * Gets the value of the account property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getAccount() { return account; } /** * Sets the value of the account property. * * @param value * allowed object is * {@link RecordRef } * */ public void setAccount(RecordRef value) { this.account = value; } /** * Gets the value of the parentItem property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getParentItem() { return parentItem; } /** * Sets the value of the parentItem property. * * @param value * allowed object is * {@link RecordRef } * */ public void setParentItem(RecordRef value) { this.parentItem = value; } /** * Gets the value of the item property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getItem() { return item; } /** * Sets the value of the item property. * * @param value * allowed object is * {@link RecordRef } * */ public void setItem(RecordRef value) { this.item = value; } /** * Gets the value of the entity property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEntity() { return entity; } /** * Sets the value of the entity property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEntity(RecordRef value) { this.entity = value; } /** * Gets the value of the department property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getDepartment() { return department; } /** * Sets the value of the department property. * * @param value * allowed object is * {@link RecordRef } * */ public void setDepartment(RecordRef value) { this.department = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link RecordRef } * */ public void setClazz(RecordRef value) { this.clazz = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLocation(RecordRef value) { this.location = value; } /** * Gets the value of the subsidiary property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getSubsidiary() { return subsidiary; } /** * Sets the value of the subsidiary property. * * @param value * allowed object is * {@link RecordRef } * */ public void setSubsidiary(RecordRef value) { this.subsidiary = value; } /** * Gets the value of the book property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getBook() { return book; } /** * Sets the value of the book property. * * @param value * allowed object is * {@link RecordRef } * */ public void setBook(RecordRef value) { this.book = value; } /** * Gets the value of the amount property. * */ public double getAmount() { return amount; } /** * Sets the value of the amount property. * */ public void setAmount(double value) { this.amount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy