com.microsoft.graph.beta.generated.models.RiskyServicePrincipalHistoryItem 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.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class RiskyServicePrincipalHistoryItem extends RiskyServicePrincipal implements Parsable {
/**
* Instantiates a new {@link RiskyServicePrincipalHistoryItem} and sets the default values.
*/
public RiskyServicePrincipalHistoryItem() {
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 RiskyServicePrincipalHistoryItem}
*/
@jakarta.annotation.Nonnull
public static RiskyServicePrincipalHistoryItem createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new RiskyServicePrincipalHistoryItem();
}
/**
* Gets the activity property value. The activity related to service principal risk level change.
* @return a {@link RiskServicePrincipalActivity}
*/
@jakarta.annotation.Nullable
public RiskServicePrincipalActivity 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(RiskServicePrincipalActivity::createFromDiscriminatorValue)); });
deserializerMap.put("initiatedBy", (n) -> { this.setInitiatedBy(n.getStringValue()); });
deserializerMap.put("servicePrincipalId", (n) -> { this.setServicePrincipalId(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the initiatedBy property value. The identifier of the actor of the operation.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getInitiatedBy() {
return this.backingStore.get("initiatedBy");
}
/**
* Gets the servicePrincipalId property value. The identifier of the service principal.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getServicePrincipalId() {
return this.backingStore.get("servicePrincipalId");
}
/**
* 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("servicePrincipalId", this.getServicePrincipalId());
}
/**
* Sets the activity property value. The activity related to service principal risk level change.
* @param value Value to set for the activity property.
*/
public void setActivity(@jakarta.annotation.Nullable final RiskServicePrincipalActivity value) {
this.backingStore.set("activity", value);
}
/**
* Sets the initiatedBy property value. The identifier of the actor of 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 servicePrincipalId property value. The identifier of the service principal.
* @param value Value to set for the servicePrincipalId property.
*/
public void setServicePrincipalId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("servicePrincipalId", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy