
tsg.ns.wsdl.coop.PaycheckPayContrib 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 PaycheckPayContrib complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PaycheckPayContrib">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="payItem" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="wageBase" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="manualEntry" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaycheckPayContrib", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = {
"payItem",
"line",
"wageBase",
"amount",
"manualEntry"
})
public class PaycheckPayContrib {
protected RecordRef payItem;
protected Long line;
protected Double wageBase;
protected Double amount;
protected Boolean manualEntry;
/**
* Gets the value of the payItem property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPayItem() {
return payItem;
}
/**
* Sets the value of the payItem property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPayItem(RecordRef value) {
this.payItem = 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 wageBase property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getWageBase() {
return wageBase;
}
/**
* Sets the value of the wageBase property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setWageBase(Double value) {
this.wageBase = 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 manualEntry property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isManualEntry() {
return manualEntry;
}
/**
* Sets the value of the manualEntry property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setManualEntry(Boolean value) {
this.manualEntry = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy