Package com.microsoft.graph.models
Class TodoTaskList
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.TodoTaskList
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class TodoTaskList
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Todo Task List.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Display Name.The Extensions.The Is Owner.The Is Shared.The Tasks.The Wellknown List Name. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the task list. -
isOwner
The Is Owner. True if the user is owner of the given task list. -
wellknownListName
@SerializedName(value="wellknownListName", alternate="WellknownListName") @Expose @Nullable public WellknownListName wellknownListNameThe Wellknown List Name. Property indicating the list name if the given list is a well-known list. Possible values are: none, defaultList, flaggedEmails, unknownFutureValue. -
extensions
@SerializedName(value="extensions", alternate="Extensions") @Expose @Nullable public ExtensionCollectionPage extensionsThe Extensions. The collection of open extensions defined for the task list. Nullable. -
tasks
@SerializedName(value="tasks", alternate="Tasks") @Expose @Nullable public TodoTaskCollectionPage tasksThe Tasks. The tasks in this task list. Read-only. Nullable.
-
-
Constructor Details
-
TodoTaskList
public TodoTaskList()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-