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

com.connectifier.xeroclient.models.TimesheetCategories 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="TimesheetCategories">
 *   <xs:sequence>
 *     <xs:element type="xs:string" name="TrackingCategoryID" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="xs:string" name="TrackingCategoryName" minOccurs="0" maxOccurs="1"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class TimesheetCategories { private String trackingCategoryID; private String trackingCategoryName; /** * Get the 'TrackingCategoryID' element value. * * @return value */ public String getTrackingCategoryID() { return trackingCategoryID; } /** * Set the 'TrackingCategoryID' element value. * * @param trackingCategoryID */ public void setTrackingCategoryID(String trackingCategoryID) { this.trackingCategoryID = trackingCategoryID; } /** * Get the 'TrackingCategoryName' element value. * * @return value */ public String getTrackingCategoryName() { return trackingCategoryName; } /** * Set the 'TrackingCategoryName' element value. * * @param trackingCategoryName */ public void setTrackingCategoryName(String trackingCategoryName) { this.trackingCategoryName = trackingCategoryName; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy