Package com.microsoft.graph.models
Class PlannerPlan
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.PlannerPlan
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Planner Plan.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Buckets.The Created By.The Created Date Time.The Details.The Owner.The Tasks.The Title. -
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
-
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. Read-only. The user who created the plan. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -
owner
The Owner. ID of the Group that owns the plan. A valid group must exist before this field can be set. After it is set, this property can’t be updated. -
title
The Title. Required. Title of the plan. -
buckets
@SerializedName(value="buckets", alternate="Buckets") @Expose @Nullable public PlannerBucketCollectionPage bucketsThe Buckets. Read-only. Nullable. Collection of buckets in the plan. -
details
@SerializedName(value="details", alternate="Details") @Expose @Nullable public PlannerPlanDetails detailsThe Details. Read-only. Nullable. Additional details about the plan. -
tasks
@SerializedName(value="tasks", alternate="Tasks") @Expose @Nullable public PlannerTaskCollectionPage tasksThe Tasks. Read-only. Nullable. Collection of tasks in the plan.
-
-
Constructor Details
-
PlannerPlan
public PlannerPlan()
-
-
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
-