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

com.connectifier.xeroclient.models.TrackingCategories Maven / Gradle / Ivy


package com.connectifier.xeroclient.models;

import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="TrackingCategories">
 *   <xs:sequence>
 *     <xs:element type="EmployeeGroups" name="EmployeeGroups" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="TimesheetCategories" name="TimesheetCategories" minOccurs="0" maxOccurs="1"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class TrackingCategories { private EmployeeGroups employeeGroups; private TimesheetCategories timesheetCategories; /** * Get the 'EmployeeGroups' element value. * * @return value */ public EmployeeGroups getEmployeeGroups() { return employeeGroups; } /** * Set the 'EmployeeGroups' element value. * * @param employeeGroups */ public void setEmployeeGroups(EmployeeGroups employeeGroups) { this.employeeGroups = employeeGroups; } /** * Get the 'TimesheetCategories' element value. * * @return value */ public TimesheetCategories getTimesheetCategories() { return timesheetCategories; } /** * Set the 'TimesheetCategories' element value. * * @param timesheetCategories */ public void setTimesheetCategories(TimesheetCategories timesheetCategories) { this.timesheetCategories = timesheetCategories; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy