Package com.microsoft.graph.models
Class MobileAppContentFile
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.MobileAppContentFile
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class MobileAppContentFile
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Mobile App Content File.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Azure Storage Uri.The Azure Storage Uri Expiration Date Time.The Created Date Time.The Is Committed.byte[]
The Manifest.The Name.The Size.The Size Encrypted.The Upload State. -
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
-
azureStorageUri
@SerializedName(value="azureStorageUri", alternate="AzureStorageUri") @Expose @Nullable public String azureStorageUriThe Azure Storage Uri. The Azure Storage URI. -
azureStorageUriExpirationDateTime
@SerializedName(value="azureStorageUriExpirationDateTime", alternate="AzureStorageUriExpirationDateTime") @Expose @Nullable public OffsetDateTime azureStorageUriExpirationDateTimeThe Azure Storage Uri Expiration Date Time. The time the Azure storage Uri expires. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The time the file was created. -
isCommitted
@SerializedName(value="isCommitted", alternate="IsCommitted") @Expose @Nullable public Boolean isCommittedThe Is Committed. A value indicating whether the file is committed. -
manifest
@SerializedName(value="manifest", alternate="Manifest") @Expose @Nullable public byte[] manifestThe Manifest. The manifest information. -
name
The Name. the file name. -
size
The Size. The size of the file prior to encryption. -
sizeEncrypted
@SerializedName(value="sizeEncrypted", alternate="SizeEncrypted") @Expose @Nullable public Long sizeEncryptedThe Size Encrypted. The size of the file after encryption. -
uploadState
@SerializedName(value="uploadState", alternate="UploadState") @Expose @Nullable public MobileAppContentFileUploadState uploadStateThe Upload State. The state of the current upload request. Possible values are: success, transientError, error, unknown, azureStorageUriRequestSuccess, azureStorageUriRequestPending, azureStorageUriRequestFailed, azureStorageUriRequestTimedOut, azureStorageUriRenewalSuccess, azureStorageUriRenewalPending, azureStorageUriRenewalFailed, azureStorageUriRenewalTimedOut, commitFileSuccess, commitFilePending, commitFileFailed, commitFileTimedOut.
-
-
Constructor Details
-
MobileAppContentFile
public MobileAppContentFile()
-
-
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
-