com.microsoft.graph.beta.generated.models.MacOSSoftwareUpdateAccountSummary Maven / Gradle / Ivy
package com.microsoft.graph.beta.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;
/**
* MacOS software update account summary report for a device and user
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class MacOSSoftwareUpdateAccountSummary extends Entity implements Parsable {
/**
* Instantiates a new {@link MacOSSoftwareUpdateAccountSummary} and sets the default values.
*/
public MacOSSoftwareUpdateAccountSummary() {
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 MacOSSoftwareUpdateAccountSummary}
*/
@jakarta.annotation.Nonnull
public static MacOSSoftwareUpdateAccountSummary createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new MacOSSoftwareUpdateAccountSummary();
}
/**
* Gets the categorySummaries property value. Summary of the updates by category.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCategorySummaries() {
return this.backingStore.get("categorySummaries");
}
/**
* Gets the deviceId property value. The device ID.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDeviceId() {
return this.backingStore.get("deviceId");
}
/**
* Gets the deviceName property value. The device name.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDeviceName() {
return this.backingStore.get("deviceName");
}
/**
* Gets the displayName property value. The name of the report
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* Gets the failedUpdateCount property value. Number of failed updates on the device.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getFailedUpdateCount() {
return this.backingStore.get("failedUpdateCount");
}
/**
* 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("categorySummaries", (n) -> { this.setCategorySummaries(n.getCollectionOfObjectValues(MacOSSoftwareUpdateCategorySummary::createFromDiscriminatorValue)); });
deserializerMap.put("deviceId", (n) -> { this.setDeviceId(n.getStringValue()); });
deserializerMap.put("deviceName", (n) -> { this.setDeviceName(n.getStringValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("failedUpdateCount", (n) -> { this.setFailedUpdateCount(n.getIntegerValue()); });
deserializerMap.put("lastUpdatedDateTime", (n) -> { this.setLastUpdatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("osVersion", (n) -> { this.setOsVersion(n.getStringValue()); });
deserializerMap.put("successfulUpdateCount", (n) -> { this.setSuccessfulUpdateCount(n.getIntegerValue()); });
deserializerMap.put("totalUpdateCount", (n) -> { this.setTotalUpdateCount(n.getIntegerValue()); });
deserializerMap.put("userId", (n) -> { this.setUserId(n.getStringValue()); });
deserializerMap.put("userPrincipalName", (n) -> { this.setUserPrincipalName(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the lastUpdatedDateTime property value. Last date time the report for this device was updated.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getLastUpdatedDateTime() {
return this.backingStore.get("lastUpdatedDateTime");
}
/**
* Gets the osVersion property value. The OS version.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getOsVersion() {
return this.backingStore.get("osVersion");
}
/**
* Gets the successfulUpdateCount property value. Number of successful updates on the device.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getSuccessfulUpdateCount() {
return this.backingStore.get("successfulUpdateCount");
}
/**
* Gets the totalUpdateCount property value. Number of total updates on the device.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getTotalUpdateCount() {
return this.backingStore.get("totalUpdateCount");
}
/**
* Gets the userId property value. The user ID.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getUserId() {
return this.backingStore.get("userId");
}
/**
* Gets the userPrincipalName property value. The user principal name
* @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.writeCollectionOfObjectValues("categorySummaries", this.getCategorySummaries());
writer.writeStringValue("deviceId", this.getDeviceId());
writer.writeStringValue("deviceName", this.getDeviceName());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeIntegerValue("failedUpdateCount", this.getFailedUpdateCount());
writer.writeOffsetDateTimeValue("lastUpdatedDateTime", this.getLastUpdatedDateTime());
writer.writeStringValue("osVersion", this.getOsVersion());
writer.writeIntegerValue("successfulUpdateCount", this.getSuccessfulUpdateCount());
writer.writeIntegerValue("totalUpdateCount", this.getTotalUpdateCount());
writer.writeStringValue("userId", this.getUserId());
writer.writeStringValue("userPrincipalName", this.getUserPrincipalName());
}
/**
* Sets the categorySummaries property value. Summary of the updates by category.
* @param value Value to set for the categorySummaries property.
*/
public void setCategorySummaries(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("categorySummaries", value);
}
/**
* Sets the deviceId property value. The device ID.
* @param value Value to set for the deviceId property.
*/
public void setDeviceId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("deviceId", value);
}
/**
* Sets the deviceName property value. The device name.
* @param value Value to set for the deviceName property.
*/
public void setDeviceName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("deviceName", value);
}
/**
* Sets the displayName property value. The name of the report
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the failedUpdateCount property value. Number of failed updates on the device.
* @param value Value to set for the failedUpdateCount property.
*/
public void setFailedUpdateCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("failedUpdateCount", value);
}
/**
* Sets the lastUpdatedDateTime property value. Last date time the report for this device was updated.
* @param value Value to set for the lastUpdatedDateTime property.
*/
public void setLastUpdatedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("lastUpdatedDateTime", value);
}
/**
* Sets the osVersion property value. The OS version.
* @param value Value to set for the osVersion property.
*/
public void setOsVersion(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("osVersion", value);
}
/**
* Sets the successfulUpdateCount property value. Number of successful updates on the device.
* @param value Value to set for the successfulUpdateCount property.
*/
public void setSuccessfulUpdateCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("successfulUpdateCount", value);
}
/**
* Sets the totalUpdateCount property value. Number of total updates on the device.
* @param value Value to set for the totalUpdateCount property.
*/
public void setTotalUpdateCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("totalUpdateCount", value);
}
/**
* Sets the userId property value. The user ID.
* @param value Value to set for the userId property.
*/
public void setUserId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("userId", value);
}
/**
* Sets the userPrincipalName property value. The user principal name
* @param value Value to set for the userPrincipalName property.
*/
public void setUserPrincipalName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("userPrincipalName", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy