com.microsoft.graph.generated.models.CalendarSharingMessage 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 CalendarSharingMessage extends Message implements Parsable {
/**
* Instantiates a new {@link CalendarSharingMessage} and sets the default values.
*/
public CalendarSharingMessage() {
super();
this.setOdataType("#microsoft.graph.calendarSharingMessage");
}
/**
* 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 CalendarSharingMessage}
*/
@jakarta.annotation.Nonnull
public static CalendarSharingMessage createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new CalendarSharingMessage();
}
/**
* Gets the canAccept property value. The canAccept property
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getCanAccept() {
return this.backingStore.get("canAccept");
}
/**
* 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("canAccept", (n) -> { this.setCanAccept(n.getBooleanValue()); });
deserializerMap.put("sharingMessageAction", (n) -> { this.setSharingMessageAction(n.getObjectValue(CalendarSharingMessageAction::createFromDiscriminatorValue)); });
deserializerMap.put("sharingMessageActions", (n) -> { this.setSharingMessageActions(n.getCollectionOfObjectValues(CalendarSharingMessageAction::createFromDiscriminatorValue)); });
deserializerMap.put("suggestedCalendarName", (n) -> { this.setSuggestedCalendarName(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the sharingMessageAction property value. The sharingMessageAction property
* @return a {@link CalendarSharingMessageAction}
*/
@jakarta.annotation.Nullable
public CalendarSharingMessageAction getSharingMessageAction() {
return this.backingStore.get("sharingMessageAction");
}
/**
* Gets the sharingMessageActions property value. The sharingMessageActions property
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getSharingMessageActions() {
return this.backingStore.get("sharingMessageActions");
}
/**
* Gets the suggestedCalendarName property value. The suggestedCalendarName property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getSuggestedCalendarName() {
return this.backingStore.get("suggestedCalendarName");
}
/**
* 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.writeBooleanValue("canAccept", this.getCanAccept());
writer.writeObjectValue("sharingMessageAction", this.getSharingMessageAction());
writer.writeCollectionOfObjectValues("sharingMessageActions", this.getSharingMessageActions());
writer.writeStringValue("suggestedCalendarName", this.getSuggestedCalendarName());
}
/**
* Sets the canAccept property value. The canAccept property
* @param value Value to set for the canAccept property.
*/
public void setCanAccept(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("canAccept", value);
}
/**
* Sets the sharingMessageAction property value. The sharingMessageAction property
* @param value Value to set for the sharingMessageAction property.
*/
public void setSharingMessageAction(@jakarta.annotation.Nullable final CalendarSharingMessageAction value) {
this.backingStore.set("sharingMessageAction", value);
}
/**
* Sets the sharingMessageActions property value. The sharingMessageActions property
* @param value Value to set for the sharingMessageActions property.
*/
public void setSharingMessageActions(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("sharingMessageActions", value);
}
/**
* Sets the suggestedCalendarName property value. The suggestedCalendarName property
* @param value Value to set for the suggestedCalendarName property.
*/
public void setSuggestedCalendarName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("suggestedCalendarName", value);
}
}