Class DataSourceContainer
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.DataSourceContainer
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
EdiscoveryCustodian,EdiscoveryNoncustodialDataSource
public class DataSourceContainer
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Data Source Container.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created Date Time.The Display Name.The Hold Status.The Last Modified Date Time.The Released Date Time.The Status. -
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
-
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Created date and time of the dataSourceContainer entity. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name of the dataSourceContainer entity. -
holdStatus
@SerializedName(value="holdStatus", alternate="HoldStatus") @Expose @Nullable public DataSourceHoldStatus holdStatusThe Hold Status. The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. Last modified date and time of the dataSourceContainer. -
releasedDateTime
@SerializedName(value="releasedDateTime", alternate="ReleasedDateTime") @Expose @Nullable public OffsetDateTime releasedDateTimeThe Released Date Time. Date and time that the dataSourceContainer was released from the case. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public DataSourceContainerStatus statusThe Status. Latest status of the dataSourceContainer. Possible values are: Active, Released.
-
-
Constructor Details
-
DataSourceContainer
public DataSourceContainer()
-
-
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
-