Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import com.microsoft.kiota.store.BackedModel;
import com.microsoft.kiota.store.BackingStore;
import com.microsoft.kiota.store.BackingStoreFactorySingleton;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* An item describing notification setting.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class IosNotificationSettings implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link IosNotificationSettings} and sets the default values.
*/
public IosNotificationSettings() {
this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
this.setAdditionalData(new HashMap<>());
}
/**
* 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 IosNotificationSettings}
*/
@jakarta.annotation.Nonnull
public static IosNotificationSettings createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new IosNotificationSettings();
}
/**
* Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @return a {@link Map}
*/
@jakarta.annotation.Nonnull
public Map getAdditionalData() {
Map value = this.backingStore.get("additionalData");
if(value == null) {
value = new HashMap<>();
this.setAdditionalData(value);
}
return value;
}
/**
* Gets the alertType property value. Notification Settings Alert Type.
* @return a {@link IosNotificationAlertType}
*/
@jakarta.annotation.Nullable
public IosNotificationAlertType getAlertType() {
return this.backingStore.get("alertType");
}
/**
* Gets the appName property value. Application name to be associated with the bundleID.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getAppName() {
return this.backingStore.get("appName");
}
/**
* Gets the backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* Gets the badgesEnabled property value. Indicates whether badges are allowed for this app.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getBadgesEnabled() {
return this.backingStore.get("badgesEnabled");
}
/**
* Gets the bundleID property value. Bundle id of app to which to apply these notification settings.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getBundleID() {
return this.backingStore.get("bundleID");
}
/**
* Gets the enabled property value. Indicates whether notifications are allowed for this app.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getEnabled() {
return this.backingStore.get("enabled");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(10);
deserializerMap.put("alertType", (n) -> { this.setAlertType(n.getEnumValue(IosNotificationAlertType::forValue)); });
deserializerMap.put("appName", (n) -> { this.setAppName(n.getStringValue()); });
deserializerMap.put("badgesEnabled", (n) -> { this.setBadgesEnabled(n.getBooleanValue()); });
deserializerMap.put("bundleID", (n) -> { this.setBundleID(n.getStringValue()); });
deserializerMap.put("enabled", (n) -> { this.setEnabled(n.getBooleanValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("publisher", (n) -> { this.setPublisher(n.getStringValue()); });
deserializerMap.put("showInNotificationCenter", (n) -> { this.setShowInNotificationCenter(n.getBooleanValue()); });
deserializerMap.put("showOnLockScreen", (n) -> { this.setShowOnLockScreen(n.getBooleanValue()); });
deserializerMap.put("soundsEnabled", (n) -> { this.setSoundsEnabled(n.getBooleanValue()); });
return deserializerMap;
}
/**
* Gets the @odata.type property value. The OdataType property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getOdataType() {
return this.backingStore.get("odataType");
}
/**
* Gets the publisher property value. Publisher to be associated with the bundleID.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getPublisher() {
return this.backingStore.get("publisher");
}
/**
* Gets the showInNotificationCenter property value. Indicates whether notifications can be shown in notification center.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getShowInNotificationCenter() {
return this.backingStore.get("showInNotificationCenter");
}
/**
* Gets the showOnLockScreen property value. Indicates whether notifications can be shown on the lock screen.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getShowOnLockScreen() {
return this.backingStore.get("showOnLockScreen");
}
/**
* Gets the soundsEnabled property value. Indicates whether sounds are allowed for this app.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getSoundsEnabled() {
return this.backingStore.get("soundsEnabled");
}
/**
* 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);
writer.writeEnumValue("alertType", this.getAlertType());
writer.writeStringValue("appName", this.getAppName());
writer.writeBooleanValue("badgesEnabled", this.getBadgesEnabled());
writer.writeStringValue("bundleID", this.getBundleID());
writer.writeBooleanValue("enabled", this.getEnabled());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeStringValue("publisher", this.getPublisher());
writer.writeBooleanValue("showInNotificationCenter", this.getShowInNotificationCenter());
writer.writeBooleanValue("showOnLockScreen", this.getShowOnLockScreen());
writer.writeBooleanValue("soundsEnabled", this.getSoundsEnabled());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @param value Value to set for the AdditionalData property.
*/
public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
this.backingStore.set("additionalData", value);
}
/**
* Sets the alertType property value. Notification Settings Alert Type.
* @param value Value to set for the alertType property.
*/
public void setAlertType(@jakarta.annotation.Nullable final IosNotificationAlertType value) {
this.backingStore.set("alertType", value);
}
/**
* Sets the appName property value. Application name to be associated with the bundleID.
* @param value Value to set for the appName property.
*/
public void setAppName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("appName", value);
}
/**
* Sets the backingStore property value. Stores model information.
* @param value Value to set for the backingStore property.
*/
public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
Objects.requireNonNull(value);
this.backingStore = value;
}
/**
* Sets the badgesEnabled property value. Indicates whether badges are allowed for this app.
* @param value Value to set for the badgesEnabled property.
*/
public void setBadgesEnabled(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("badgesEnabled", value);
}
/**
* Sets the bundleID property value. Bundle id of app to which to apply these notification settings.
* @param value Value to set for the bundleID property.
*/
public void setBundleID(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("bundleID", value);
}
/**
* Sets the enabled property value. Indicates whether notifications are allowed for this app.
* @param value Value to set for the enabled property.
*/
public void setEnabled(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("enabled", value);
}
/**
* Sets the @odata.type property value. The OdataType property
* @param value Value to set for the @odata.type property.
*/
public void setOdataType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("odataType", value);
}
/**
* Sets the publisher property value. Publisher to be associated with the bundleID.
* @param value Value to set for the publisher property.
*/
public void setPublisher(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("publisher", value);
}
/**
* Sets the showInNotificationCenter property value. Indicates whether notifications can be shown in notification center.
* @param value Value to set for the showInNotificationCenter property.
*/
public void setShowInNotificationCenter(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("showInNotificationCenter", value);
}
/**
* Sets the showOnLockScreen property value. Indicates whether notifications can be shown on the lock screen.
* @param value Value to set for the showOnLockScreen property.
*/
public void setShowOnLockScreen(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("showOnLockScreen", value);
}
/**
* Sets the soundsEnabled property value. Indicates whether sounds are allowed for this app.
* @param value Value to set for the soundsEnabled property.
*/
public void setSoundsEnabled(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("soundsEnabled", value);
}
}