
tsg.ns.wsdl.coop.ItemReceiptExpense 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 ItemReceiptExpense complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ItemReceiptExpense">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="markReceived" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="orderLine" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="account" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ItemReceiptExpense", namespace = "urn:purchases_2023_1.transactions.webservices.netsuite.com", propOrder = {
"markReceived",
"orderLine",
"line",
"account",
"memo",
"amount",
"customFieldList"
})
public class ItemReceiptExpense {
protected Boolean markReceived;
protected Long orderLine;
protected Long line;
protected String account;
protected String memo;
protected Double amount;
protected CustomFieldList customFieldList;
/**
* Gets the value of the markReceived property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMarkReceived() {
return markReceived;
}
/**
* Sets the value of the markReceived property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMarkReceived(Boolean value) {
this.markReceived = value;
}
/**
* Gets the value of the orderLine property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getOrderLine() {
return orderLine;
}
/**
* Sets the value of the orderLine property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setOrderLine(Long value) {
this.orderLine = value;
}
/**
* Gets the value of the line property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLine() {
return line;
}
/**
* Sets the value of the line property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLine(Long value) {
this.line = value;
}
/**
* Gets the value of the account property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccount() {
return account;
}
/**
* Sets the value of the account property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccount(String value) {
this.account = value;
}
/**
* Gets the value of the memo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMemo() {
return memo;
}
/**
* Sets the value of the memo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMemo(String value) {
this.memo = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAmount(Double value) {
this.amount = 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