Package com.microsoft.graph.models
Class EducationRubric
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.EducationRubric
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class EducationRubric
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Education Rubric.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created By.The Created Date Time.The Description.The Display Name.The Grading.The Last Modified By.The Last Modified Date Time.The Levels.The Qualities. -
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
-
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. The user who created this resource. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. 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 -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public EducationItemBody descriptionThe Description. The description of this rubric. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of this rubric. -
grading
@SerializedName(value="grading", alternate="Grading") @Expose @Nullable public EducationAssignmentGradeType gradingThe Grading. The grading type of this rubric -- null for a no-points rubric, or educationAssignmentPointsGradeType for a points rubric. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. The last user to modify the resource. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. Moment in time when the resource was last modified. 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 -
levels
@SerializedName(value="levels", alternate="Levels") @Expose @Nullable public List<RubricLevel> levelsThe Levels. The collection of levels making up this rubric. -
qualities
@SerializedName(value="qualities", alternate="Qualities") @Expose @Nullable public List<RubricQuality> qualitiesThe Qualities. The collection of qualities making up this rubric.
-
-
Constructor Details
-
EducationRubric
public EducationRubric()
-
-
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
-