Package com.microsoft.graph.models
Class AppLogCollectionRequest
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AppLogCollectionRequest
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AppLogCollectionRequest
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the App Log Collection Request.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Custom Log Folders.The Error Message.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
-
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. Time at which the upload log request reached a completed state if not completed yet NULL will be returned. -
customLogFolders
@SerializedName(value="customLogFolders", alternate="CustomLogFolders") @Expose @Nullable public List<String> customLogFoldersThe Custom Log Folders. List of log folders. -
errorMessage
@SerializedName(value="errorMessage", alternate="ErrorMessage") @Expose @Nullable public String errorMessageThe Error Message. Indicates error message if any during the upload process. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public AppLogUploadState statusThe Status. Indicates the status for the app log collection request if it is pending, completed or failed, Default is pending. Possible values are: pending, completed, failed, unknownFutureValue.
-
-
Constructor Details
-
AppLogCollectionRequest
public AppLogCollectionRequest()
-
-
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
-