Package com.microsoft.graph.models
Class DeviceLogCollectionResponse
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.DeviceLogCollectionResponse
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DeviceLogCollectionResponse
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Device Log Collection Response.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Enrolled By User.The Expiration Date Time UTC.The Initiated By User Principal Name.The Managed Device Id.The Received Date Time UTC.The Requested Date Time UTC.The Size In KB.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
-
enrolledByUser
@SerializedName(value="enrolledByUser", alternate="EnrolledByUser") @Expose @Nullable public String enrolledByUserThe Enrolled By User. The User Principal Name (UPN) of the user that enrolled the device. -
expirationDateTimeUTC
@SerializedName(value="expirationDateTimeUTC", alternate="ExpirationDateTimeUTC") @Expose @Nullable public OffsetDateTime expirationDateTimeUTCThe Expiration Date Time UTC. The DateTime of the expiration of the logs. -
initiatedByUserPrincipalName
@SerializedName(value="initiatedByUserPrincipalName", alternate="InitiatedByUserPrincipalName") @Expose @Nullable public String initiatedByUserPrincipalNameThe Initiated By User Principal Name. The UPN for who initiated the request. -
managedDeviceId
@SerializedName(value="managedDeviceId", alternate="ManagedDeviceId") @Expose @Nullable public UUID managedDeviceIdThe Managed Device Id. Indicates Intune device unique identifier. -
receivedDateTimeUTC
@SerializedName(value="receivedDateTimeUTC", alternate="ReceivedDateTimeUTC") @Expose @Nullable public OffsetDateTime receivedDateTimeUTCThe Received Date Time UTC. The DateTime the request was received. -
requestedDateTimeUTC
@SerializedName(value="requestedDateTimeUTC", alternate="RequestedDateTimeUTC") @Expose @Nullable public OffsetDateTime requestedDateTimeUTCThe Requested Date Time UTC. The DateTime of the request. -
sizeInKB
The Size In KB. The size of the logs in KB. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -
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
-
DeviceLogCollectionResponse
public DeviceLogCollectionResponse()
-
-
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
-