com.microsoft.graph.generated.models.InsightsSettings 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 InsightsSettings extends Entity implements Parsable {
/**
* Instantiates a new {@link InsightsSettings} and sets the default values.
*/
public InsightsSettings() {
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 InsightsSettings}
*/
@jakarta.annotation.Nonnull
public static InsightsSettings createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new InsightsSettings();
}
/**
* Gets the disabledForGroup property value. The ID of a Microsoft Entra group, of which the specified type of insights are disabled for its members. The default value is null. Optional.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisabledForGroup() {
return this.backingStore.get("disabledForGroup");
}
/**
* 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("disabledForGroup", (n) -> { this.setDisabledForGroup(n.getStringValue()); });
deserializerMap.put("isEnabledInOrganization", (n) -> { this.setIsEnabledInOrganization(n.getBooleanValue()); });
return deserializerMap;
}
/**
* Gets the isEnabledInOrganization property value. true if insights of the specified type are enabled for the organization; false if insights of the specified type are disabled for all users without exceptions. The default value is true. Optional.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getIsEnabledInOrganization() {
return this.backingStore.get("isEnabledInOrganization");
}
/**
* 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.writeStringValue("disabledForGroup", this.getDisabledForGroup());
writer.writeBooleanValue("isEnabledInOrganization", this.getIsEnabledInOrganization());
}
/**
* Sets the disabledForGroup property value. The ID of a Microsoft Entra group, of which the specified type of insights are disabled for its members. The default value is null. Optional.
* @param value Value to set for the disabledForGroup property.
*/
public void setDisabledForGroup(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("disabledForGroup", value);
}
/**
* Sets the isEnabledInOrganization property value. true if insights of the specified type are enabled for the organization; false if insights of the specified type are disabled for all users without exceptions. The default value is true. Optional.
* @param value Value to set for the isEnabledInOrganization property.
*/
public void setIsEnabledInOrganization(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isEnabledInOrganization", value);
}
}