Package com.microsoft.graph.models
Class Hashes
java.lang.Object
com.microsoft.graph.models.Hashes
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Hashes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Crc32Hash.the OData type of the object as returned by the serviceThe Quick Xor Hash.The Sha1Hash.The Sha256Hash. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
crc32Hash
The Crc32Hash. The CRC32 value of the file in little endian (if available). Read-only. -
quickXorHash
@SerializedName(value="quickXorHash", alternate="QuickXorHash") @Expose @Nullable public String quickXorHashThe Quick Xor Hash. A proprietary hash of the file that can be used to determine if the contents of the file have changed (if available). Read-only. -
sha1Hash
The Sha1Hash. SHA1 hash for the contents of the file (if available). Read-only. -
sha256Hash
@SerializedName(value="sha256Hash", alternate="Sha256Hash") @Expose @Nullable public String sha256HashThe Sha256Hash. SHA256 hash for the contents of the file (if available). Read-only.
-
-
Constructor Details
-
Hashes
public Hashes()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
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- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-