Package com.microsoft.graph.models
Class DocumentSetVersion
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.BaseItemVersion
com.microsoft.graph.models.ListItemVersion
com.microsoft.graph.models.DocumentSetVersion
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DocumentSetVersion
extends ListItemVersion
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Document Set Version.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Comment.The Created By.The Created Date Time.The Items.The Should Capture Minor Version.Fields inherited from class com.microsoft.graph.models.ListItemVersion
fieldsFields inherited from class com.microsoft.graph.models.BaseItemVersion
lastModifiedBy, lastModifiedDateTime, publication -
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
-
comment
The Comment. Comment about the captured version. -
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. User who captured the version. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Date and time when this version was created. -
items
@SerializedName(value="items", alternate="Items") @Expose @Nullable public List<DocumentSetVersionItem> itemsThe Items. Items within the document set that are captured as part of this version. -
shouldCaptureMinorVersion
@SerializedName(value="shouldCaptureMinorVersion", alternate="ShouldCaptureMinorVersion") @Expose @Nullable public Boolean shouldCaptureMinorVersionThe Should Capture Minor Version. If true, minor versions of items are also captured; otherwise, only major versions will be captured. Default value is false.
-
-
Constructor Details
-
DocumentSetVersion
public DocumentSetVersion()
-
-
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 classListItemVersion- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-