com.microsoft.graph.generated.models.DeviceConfigurationUserStatus Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class DeviceConfigurationUserStatus extends Entity implements Parsable {
/**
* Instantiates a new {@link DeviceConfigurationUserStatus} and sets the default values.
*/
public DeviceConfigurationUserStatus() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link DeviceConfigurationUserStatus}
*/
@jakarta.annotation.Nonnull
public static DeviceConfigurationUserStatus createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new DeviceConfigurationUserStatus();
}
/**
* Gets the devicesCount property value. Devices count for that user.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getDevicesCount() {
return this.backingStore.get("devicesCount");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("devicesCount", (n) -> { this.setDevicesCount(n.getIntegerValue()); });
deserializerMap.put("lastReportedDateTime", (n) -> { this.setLastReportedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("status", (n) -> { this.setStatus(n.getEnumValue(ComplianceStatus::forValue)); });
deserializerMap.put("userDisplayName", (n) -> { this.setUserDisplayName(n.getStringValue()); });
deserializerMap.put("userPrincipalName", (n) -> { this.setUserPrincipalName(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the lastReportedDateTime property value. Last modified date time of the policy report.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getLastReportedDateTime() {
return this.backingStore.get("lastReportedDateTime");
}
/**
* Gets the status property value. The status property
* @return a {@link ComplianceStatus}
*/
@jakarta.annotation.Nullable
public ComplianceStatus getStatus() {
return this.backingStore.get("status");
}
/**
* Gets the userDisplayName property value. User name of the DevicePolicyStatus.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getUserDisplayName() {
return this.backingStore.get("userDisplayName");
}
/**
* Gets the userPrincipalName property value. UserPrincipalName.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getUserPrincipalName() {
return this.backingStore.get("userPrincipalName");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeIntegerValue("devicesCount", this.getDevicesCount());
writer.writeOffsetDateTimeValue("lastReportedDateTime", this.getLastReportedDateTime());
writer.writeEnumValue("status", this.getStatus());
writer.writeStringValue("userDisplayName", this.getUserDisplayName());
writer.writeStringValue("userPrincipalName", this.getUserPrincipalName());
}
/**
* Sets the devicesCount property value. Devices count for that user.
* @param value Value to set for the devicesCount property.
*/
public void setDevicesCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("devicesCount", value);
}
/**
* Sets the lastReportedDateTime property value. Last modified date time of the policy report.
* @param value Value to set for the lastReportedDateTime property.
*/
public void setLastReportedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("lastReportedDateTime", value);
}
/**
* Sets the status property value. The status property
* @param value Value to set for the status property.
*/
public void setStatus(@jakarta.annotation.Nullable final ComplianceStatus value) {
this.backingStore.set("status", value);
}
/**
* Sets the userDisplayName property value. User name of the DevicePolicyStatus.
* @param value Value to set for the userDisplayName property.
*/
public void setUserDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("userDisplayName", value);
}
/**
* Sets the userPrincipalName property value. UserPrincipalName.
* @param value Value to set for the userPrincipalName property.
*/
public void setUserPrincipalName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("userPrincipalName", value);
}
}