com.microsoft.graph.models.ListItem Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.ContentTypeInfo;
import com.microsoft.graph.models.SharepointIds;
import com.microsoft.graph.models.ItemAnalytics;
import com.microsoft.graph.models.DriveItem;
import com.microsoft.graph.models.FieldValueSet;
import com.microsoft.graph.models.BaseItem;
import com.microsoft.graph.requests.DocumentSetVersionCollectionPage;
import com.microsoft.graph.requests.ListItemVersionCollectionPage;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the List Item.
*/
public class ListItem extends BaseItem implements IJsonBackedObject {
/**
* The Content Type.
* The content type of this list item
*/
@SerializedName(value = "contentType", alternate = {"ContentType"})
@Expose
@Nullable
public ContentTypeInfo contentType;
/**
* The Sharepoint Ids.
* Returns identifiers useful for SharePoint REST compatibility. Read-only.
*/
@SerializedName(value = "sharepointIds", alternate = {"SharepointIds"})
@Expose
@Nullable
public SharepointIds sharepointIds;
/**
* The Analytics.
* Analytics about the view activities that took place on this item.
*/
@SerializedName(value = "analytics", alternate = {"Analytics"})
@Expose
@Nullable
public ItemAnalytics analytics;
/**
* The Document Set Versions.
* Version information for a document set version created by a user.
*/
@SerializedName(value = "documentSetVersions", alternate = {"DocumentSetVersions"})
@Expose
@Nullable
public com.microsoft.graph.requests.DocumentSetVersionCollectionPage documentSetVersions;
/**
* The Drive Item.
* For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]
*/
@SerializedName(value = "driveItem", alternate = {"DriveItem"})
@Expose
@Nullable
public DriveItem driveItem;
/**
* The Fields.
* The values of the columns set on this list item.
*/
@SerializedName(value = "fields", alternate = {"Fields"})
@Expose
@Nullable
public FieldValueSet fields;
/**
* The Versions.
* The list of previous versions of the list item.
*/
@SerializedName(value = "versions", alternate = {"Versions"})
@Expose
@Nullable
public com.microsoft.graph.requests.ListItemVersionCollectionPage versions;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
if (json.has("documentSetVersions")) {
documentSetVersions = serializer.deserializeObject(json.get("documentSetVersions"), com.microsoft.graph.requests.DocumentSetVersionCollectionPage.class);
}
if (json.has("versions")) {
versions = serializer.deserializeObject(json.get("versions"), com.microsoft.graph.requests.ListItemVersionCollectionPage.class);
}
}
}