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 ItemReference implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link ItemReference} and sets the default values.
*/
public ItemReference() {
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 ItemReference}
*/
@jakarta.annotation.Nonnull
public static ItemReference createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new ItemReference();
}
/**
* 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 driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDriveId() {
return this.backingStore.get("driveId");
}
/**
* Gets the driveType property value. Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDriveType() {
return this.backingStore.get("driveType");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(9);
deserializerMap.put("driveId", (n) -> { this.setDriveId(n.getStringValue()); });
deserializerMap.put("driveType", (n) -> { this.setDriveType(n.getStringValue()); });
deserializerMap.put("id", (n) -> { this.setId(n.getStringValue()); });
deserializerMap.put("name", (n) -> { this.setName(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("path", (n) -> { this.setPath(n.getStringValue()); });
deserializerMap.put("shareId", (n) -> { this.setShareId(n.getStringValue()); });
deserializerMap.put("sharepointIds", (n) -> { this.setSharepointIds(n.getObjectValue(SharepointIds::createFromDiscriminatorValue)); });
deserializerMap.put("siteId", (n) -> { this.setSiteId(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the id property value. Unique identifier of the driveItem in the drive or a listItem in a list. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getId() {
return this.backingStore.get("id");
}
/**
* Gets the name property value. The name of the item being referenced. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getName() {
return this.backingStore.get("name");
}
/**
* 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 path property value. Percent-encoded path that can be used to navigate to the item. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getPath() {
return this.backingStore.get("path");
}
/**
* Gets the shareId property value. A unique identifier for a shared resource that can be accessed via the Shares API.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getShareId() {
return this.backingStore.get("shareId");
}
/**
* Gets the sharepointIds property value. Returns identifiers useful for SharePoint REST compatibility. Read-only.
* @return a {@link SharepointIds}
*/
@jakarta.annotation.Nullable
public SharepointIds getSharepointIds() {
return this.backingStore.get("sharepointIds");
}
/**
* Gets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getSiteId() {
return this.backingStore.get("siteId");
}
/**
* 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.writeStringValue("driveId", this.getDriveId());
writer.writeStringValue("driveType", this.getDriveType());
writer.writeStringValue("id", this.getId());
writer.writeStringValue("name", this.getName());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeStringValue("path", this.getPath());
writer.writeStringValue("shareId", this.getShareId());
writer.writeObjectValue("sharepointIds", this.getSharepointIds());
writer.writeStringValue("siteId", this.getSiteId());
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 driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only.
* @param value Value to set for the driveId property.
*/
public void setDriveId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("driveId", value);
}
/**
* Sets the driveType property value. Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values.
* @param value Value to set for the driveType property.
*/
public void setDriveType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("driveType", value);
}
/**
* Sets the id property value. Unique identifier of the driveItem in the drive or a listItem in a list. Read-only.
* @param value Value to set for the id property.
*/
public void setId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("id", value);
}
/**
* Sets the name property value. The name of the item being referenced. Read-only.
* @param value Value to set for the name property.
*/
public void setName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("name", 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 path property value. Percent-encoded path that can be used to navigate to the item. Read-only.
* @param value Value to set for the path property.
*/
public void setPath(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("path", value);
}
/**
* Sets the shareId property value. A unique identifier for a shared resource that can be accessed via the Shares API.
* @param value Value to set for the shareId property.
*/
public void setShareId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("shareId", value);
}
/**
* Sets the sharepointIds property value. Returns identifiers useful for SharePoint REST compatibility. Read-only.
* @param value Value to set for the sharepointIds property.
*/
public void setSharepointIds(@jakarta.annotation.Nullable final SharepointIds value) {
this.backingStore.set("sharepointIds", value);
}
/**
* Sets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.
* @param value Value to set for the siteId property.
*/
public void setSiteId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("siteId", value);
}
}