Package com.microsoft.graph.models
Class DeviceLocalCredentialInfo
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.DeviceLocalCredentialInfo
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DeviceLocalCredentialInfo
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Device Local Credential Info.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Credentials.The Device Name.The Last Backup Date Time.The Refresh Date Time. -
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
-
credentials
@SerializedName(value="credentials", alternate="Credentials") @Expose @Nullable public List<DeviceLocalCredential> credentialsThe Credentials. The credentials of the device's local administrator account backed up to Azure Active Directory. -
deviceName
@SerializedName(value="deviceName", alternate="DeviceName") @Expose @Nullable public String deviceNameThe Device Name. Display name of the device that the local credentials are associated with. -
lastBackupDateTime
@SerializedName(value="lastBackupDateTime", alternate="LastBackupDateTime") @Expose @Nullable public OffsetDateTime lastBackupDateTimeThe Last Backup Date Time. When the local administrator account credential was backed up to Azure Active Directory. -
refreshDateTime
@SerializedName(value="refreshDateTime", alternate="RefreshDateTime") @Expose @Nullable public OffsetDateTime refreshDateTimeThe Refresh Date Time. When the local administrator account credential will be refreshed and backed up to Azure Active Directory.
-
-
Constructor Details
-
DeviceLocalCredentialInfo
public DeviceLocalCredentialInfo()
-
-
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
-