Package com.microsoft.graph.models
Class LearningCourseActivity
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.LearningCourseActivity
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
LearningAssignment
,LearningSelfInitiatedCourse
public class LearningCourseActivity
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Learning Course Activity.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Completion Percentage.The Externalcourse Activity Id.The Learner User Id.The Learning Content Id.The Learning Provider Id.The Status. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. Date and time when the assignment was completed. Optional. -
completionPercentage
@SerializedName(value="completionPercentage", alternate="CompletionPercentage") @Expose @Nullable public Integer completionPercentageThe Completion Percentage. The percentage completion value of the course activity. Optional. -
externalcourseActivityId
@SerializedName(value="externalcourseActivityId", alternate="ExternalcourseActivityId") @Expose @Nullable public String externalcourseActivityIdThe Externalcourse Activity Id. A course activity ID generated by the provider. Optional. -
learnerUserId
@SerializedName(value="learnerUserId", alternate="LearnerUserId") @Expose @Nullable public String learnerUserIdThe Learner User Id. The user ID of the learner to whom the activity is assigned. Required. -
learningContentId
@SerializedName(value="learningContentId", alternate="LearningContentId") @Expose @Nullable public String learningContentIdThe Learning Content Id. The ID of the learning content created in Viva Learning. Required. -
learningProviderId
@SerializedName(value="learningProviderId", alternate="LearningProviderId") @Expose @Nullable public String learningProviderIdThe Learning Provider Id. The registration ID of the provider. Required. -
status
The Status. The status of the course activity. Possible values are: notStarted, inProgress, completed. Required.
-
-
Constructor Details
-
LearningCourseActivity
public LearningCourseActivity()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-