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

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

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

 * <complexType name="PaycheckPaySummary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="payItem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="payItemType" 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="ytdAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaycheckPaySummary", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = { "payItem", "payItemType", "amount", "ytdAmount" }) public class PaycheckPaySummary { protected String payItem; protected String payItemType; protected Double amount; protected Double ytdAmount; /** * Gets the value of the payItem property. * * @return * possible object is * {@link String } * */ public String getPayItem() { return payItem; } /** * Sets the value of the payItem property. * * @param value * allowed object is * {@link String } * */ public void setPayItem(String value) { this.payItem = value; } /** * Gets the value of the payItemType property. * * @return * possible object is * {@link String } * */ public String getPayItemType() { return payItemType; } /** * Sets the value of the payItemType property. * * @param value * allowed object is * {@link String } * */ public void setPayItemType(String value) { this.payItemType = 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 ytdAmount property. * * @return * possible object is * {@link Double } * */ public Double getYtdAmount() { return ytdAmount; } /** * Sets the value of the ytdAmount property. * * @param value * allowed object is * {@link Double } * */ public void setYtdAmount(Double value) { this.ytdAmount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy