com.microsoft.graph.generated.models.RiskyUserHistoryItem 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.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class RiskyUserHistoryItem extends RiskyUser implements Parsable {
/**
* Instantiates a new {@link RiskyUserHistoryItem} and sets the default values.
*/
public RiskyUserHistoryItem() {
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 RiskyUserHistoryItem}
*/
@jakarta.annotation.Nonnull
public static RiskyUserHistoryItem createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new RiskyUserHistoryItem();
}
/**
* Gets the activity property value. The activity related to user risk level change.
* @return a {@link RiskUserActivity}
*/
@jakarta.annotation.Nullable
public RiskUserActivity getActivity() {
return this.backingStore.get("activity");
}
/**
* 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("activity", (n) -> { this.setActivity(n.getObjectValue(RiskUserActivity::createFromDiscriminatorValue)); });
deserializerMap.put("initiatedBy", (n) -> { this.setInitiatedBy(n.getStringValue()); });
deserializerMap.put("userId", (n) -> { this.setUserId(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the initiatedBy property value. The ID of actor that does the operation.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getInitiatedBy() {
return this.backingStore.get("initiatedBy");
}
/**
* Gets the userId property value. The ID of the user.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getUserId() {
return this.backingStore.get("userId");
}
/**
* 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.writeObjectValue("activity", this.getActivity());
writer.writeStringValue("initiatedBy", this.getInitiatedBy());
writer.writeStringValue("userId", this.getUserId());
}
/**
* Sets the activity property value. The activity related to user risk level change.
* @param value Value to set for the activity property.
*/
public void setActivity(@jakarta.annotation.Nullable final RiskUserActivity value) {
this.backingStore.set("activity", value);
}
/**
* Sets the initiatedBy property value. The ID of actor that does the operation.
* @param value Value to set for the initiatedBy property.
*/
public void setInitiatedBy(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("initiatedBy", value);
}
/**
* Sets the userId property value. The ID of the user.
* @param value Value to set for the userId property.
*/
public void setUserId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("userId", value);
}
}