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;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ScheduleItem implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link ScheduleItem} and sets the default values.
*/
public ScheduleItem() {
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 ScheduleItem}
*/
@jakarta.annotation.Nonnull
public static ScheduleItem createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new ScheduleItem();
}
/**
* 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 backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* Gets the end property value. The date, time, and time zone that the corresponding event ends.
* @return a {@link DateTimeTimeZone}
*/
@jakarta.annotation.Nullable
public DateTimeTimeZone getEnd() {
return this.backingStore.get("end");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(7);
deserializerMap.put("end", (n) -> { this.setEnd(n.getObjectValue(DateTimeTimeZone::createFromDiscriminatorValue)); });
deserializerMap.put("isPrivate", (n) -> { this.setIsPrivate(n.getBooleanValue()); });
deserializerMap.put("location", (n) -> { this.setLocation(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("start", (n) -> { this.setStart(n.getObjectValue(DateTimeTimeZone::createFromDiscriminatorValue)); });
deserializerMap.put("status", (n) -> { this.setStatus(n.getEnumValue(FreeBusyStatus::forValue)); });
deserializerMap.put("subject", (n) -> { this.setSubject(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the isPrivate property value. The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getIsPrivate() {
return this.backingStore.get("isPrivate");
}
/**
* Gets the location property value. The location where the corresponding event is held or attended from. Optional.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getLocation() {
return this.backingStore.get("location");
}
/**
* 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 start property value. The date, time, and time zone that the corresponding event starts.
* @return a {@link DateTimeTimeZone}
*/
@jakarta.annotation.Nullable
public DateTimeTimeZone getStart() {
return this.backingStore.get("start");
}
/**
* Gets the status property value. The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
* @return a {@link FreeBusyStatus}
*/
@jakarta.annotation.Nullable
public FreeBusyStatus getStatus() {
return this.backingStore.get("status");
}
/**
* Gets the subject property value. The corresponding event's subject line. Optional.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getSubject() {
return this.backingStore.get("subject");
}
/**
* 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.writeObjectValue("end", this.getEnd());
writer.writeBooleanValue("isPrivate", this.getIsPrivate());
writer.writeStringValue("location", this.getLocation());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeObjectValue("start", this.getStart());
writer.writeEnumValue("status", this.getStatus());
writer.writeStringValue("subject", this.getSubject());
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 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 end property value. The date, time, and time zone that the corresponding event ends.
* @param value Value to set for the end property.
*/
public void setEnd(@jakarta.annotation.Nullable final DateTimeTimeZone value) {
this.backingStore.set("end", value);
}
/**
* Sets the isPrivate property value. The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
* @param value Value to set for the isPrivate property.
*/
public void setIsPrivate(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isPrivate", value);
}
/**
* Sets the location property value. The location where the corresponding event is held or attended from. Optional.
* @param value Value to set for the location property.
*/
public void setLocation(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("location", 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 start property value. The date, time, and time zone that the corresponding event starts.
* @param value Value to set for the start property.
*/
public void setStart(@jakarta.annotation.Nullable final DateTimeTimeZone value) {
this.backingStore.set("start", value);
}
/**
* Sets the status property value. The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
* @param value Value to set for the status property.
*/
public void setStatus(@jakarta.annotation.Nullable final FreeBusyStatus value) {
this.backingStore.set("status", value);
}
/**
* Sets the subject property value. The corresponding event's subject line. Optional.
* @param value Value to set for the subject property.
*/
public void setSubject(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("subject", value);
}
}