/******************************************************************************* Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved. Licensed under the MIT or Apache License; see LICENSE in the source repository root for authoritative license information. **NOTE** This code was generated by a tool and will occasionally be overwritten. We welcome comments and issues regarding this code; they will be addressed in the generation tool. If you wish to submit pull requests, please do so for the templates in that tool. This code was generated by Vipr (https://github.com/microsoft/vipr) using the T4TemplateWriter (https://github.com/msopentech/vipr-t4templatewriter). ******************************************************************************/ package com.microsoft.services.outlook; import com.microsoft.services.outlook.Entity; /** * The type Item. */ public class Item extends Entity { public Item(){ setODataType("#Microsoft.OutlookServices.Item"); } private String ChangeKey; /** * Gets the Change Key. * * @return the String */ public String getChangeKey() { return this.ChangeKey; } /** * Sets the Change Key. * * @param value the String */ public void setChangeKey(String value) { this.ChangeKey = value; valueChanged("ChangeKey", value); } private java.util.List<String> Categories = null; /** * Gets the Categories. * * @return the java.util.List<String> */ public java.util.List<String> getCategories() { return this.Categories; } /** * Sets the Categories. * * @param value the java.util.List<String> */ public void setCategories(java.util.List<String> value) { this.Categories = value; valueChanged("Categories", value); } private java.util.Calendar DateTimeCreated; /** * Gets the Date Time Created. * * @return the java.util.Calendar */ public java.util.Calendar getDateTimeCreated() { return this.DateTimeCreated; } /** * Sets the Date Time Created. * * @param value the java.util.Calendar */ public void setDateTimeCreated(java.util.Calendar value) { this.DateTimeCreated = value; valueChanged("DateTimeCreated", value); } private java.util.Calendar DateTimeLastModified; /** * Gets the Date Time Last Modified. * * @return the java.util.Calendar */ public java.util.Calendar getDateTimeLastModified() { return this.DateTimeLastModified; } /** * Sets the Date Time Last Modified. * * @param value the java.util.Calendar */ public void setDateTimeLastModified(java.util.Calendar value) { this.DateTimeLastModified = value; valueChanged("DateTimeLastModified", value); } }