com.microsoft.graph.generated.models.GroupLifecyclePolicy 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 GroupLifecyclePolicy extends Entity implements Parsable {
/**
* Instantiates a new {@link GroupLifecyclePolicy} and sets the default values.
*/
public GroupLifecyclePolicy() {
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 GroupLifecyclePolicy}
*/
@jakarta.annotation.Nonnull
public static GroupLifecyclePolicy createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new GroupLifecyclePolicy();
}
/**
* Gets the alternateNotificationEmails property value. List of email address to send notifications for groups without owners. Multiple email address can be defined by separating email address with a semicolon.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getAlternateNotificationEmails() {
return this.backingStore.get("alternateNotificationEmails");
}
/**
* 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("alternateNotificationEmails", (n) -> { this.setAlternateNotificationEmails(n.getStringValue()); });
deserializerMap.put("groupLifetimeInDays", (n) -> { this.setGroupLifetimeInDays(n.getIntegerValue()); });
deserializerMap.put("managedGroupTypes", (n) -> { this.setManagedGroupTypes(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the groupLifetimeInDays property value. Number of days before a group expires and needs to be renewed. Once renewed, the group expiration is extended by the number of days defined.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getGroupLifetimeInDays() {
return this.backingStore.get("groupLifetimeInDays");
}
/**
* Gets the managedGroupTypes property value. The group type for which the expiration policy applies. Possible values are All, Selected or None.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getManagedGroupTypes() {
return this.backingStore.get("managedGroupTypes");
}
/**
* 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("alternateNotificationEmails", this.getAlternateNotificationEmails());
writer.writeIntegerValue("groupLifetimeInDays", this.getGroupLifetimeInDays());
writer.writeStringValue("managedGroupTypes", this.getManagedGroupTypes());
}
/**
* Sets the alternateNotificationEmails property value. List of email address to send notifications for groups without owners. Multiple email address can be defined by separating email address with a semicolon.
* @param value Value to set for the alternateNotificationEmails property.
*/
public void setAlternateNotificationEmails(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("alternateNotificationEmails", value);
}
/**
* Sets the groupLifetimeInDays property value. Number of days before a group expires and needs to be renewed. Once renewed, the group expiration is extended by the number of days defined.
* @param value Value to set for the groupLifetimeInDays property.
*/
public void setGroupLifetimeInDays(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("groupLifetimeInDays", value);
}
/**
* Sets the managedGroupTypes property value. The group type for which the expiration policy applies. Possible values are All, Selected or None.
* @param value Value to set for the managedGroupTypes property.
*/
public void setManagedGroupTypes(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("managedGroupTypes", value);
}
}