
tsg.ns.wsdl.coop.TimeSheetTimeGrid 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 TimeSheetTimeGrid complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TimeSheetTimeGrid">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sunday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="monday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="tuesday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="wednesday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="thursday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="friday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* <element name="saturday" type="{urn:employees_2023_1.transactions.webservices.netsuite.com}TimeEntry" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimeSheetTimeGrid", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = {
"sunday",
"monday",
"tuesday",
"wednesday",
"thursday",
"friday",
"saturday"
})
public class TimeSheetTimeGrid {
protected TimeEntry sunday;
protected TimeEntry monday;
protected TimeEntry tuesday;
protected TimeEntry wednesday;
protected TimeEntry thursday;
protected TimeEntry friday;
protected TimeEntry saturday;
/**
* Gets the value of the sunday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getSunday() {
return sunday;
}
/**
* Sets the value of the sunday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setSunday(TimeEntry value) {
this.sunday = value;
}
/**
* Gets the value of the monday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getMonday() {
return monday;
}
/**
* Sets the value of the monday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setMonday(TimeEntry value) {
this.monday = value;
}
/**
* Gets the value of the tuesday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getTuesday() {
return tuesday;
}
/**
* Sets the value of the tuesday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setTuesday(TimeEntry value) {
this.tuesday = value;
}
/**
* Gets the value of the wednesday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getWednesday() {
return wednesday;
}
/**
* Sets the value of the wednesday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setWednesday(TimeEntry value) {
this.wednesday = value;
}
/**
* Gets the value of the thursday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getThursday() {
return thursday;
}
/**
* Sets the value of the thursday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setThursday(TimeEntry value) {
this.thursday = value;
}
/**
* Gets the value of the friday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getFriday() {
return friday;
}
/**
* Sets the value of the friday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setFriday(TimeEntry value) {
this.friday = value;
}
/**
* Gets the value of the saturday property.
*
* @return
* possible object is
* {@link TimeEntry }
*
*/
public TimeEntry getSaturday() {
return saturday;
}
/**
* Sets the value of the saturday property.
*
* @param value
* allowed object is
* {@link TimeEntry }
*
*/
public void setSaturday(TimeEntry value) {
this.saturday = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy