Package com.microsoft.graph.models
Class RemoteItem
java.lang.Object
com.microsoft.graph.models.RemoteItem
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Remote Item.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created By.The Created Date Time.The File.The File System Info.The Folder.The Id.The Image.The Last Modified By.The Last Modified Date Time.The Package.The Name.the OData type of the object as returned by the serviceThe Parent Reference.The Shared.The Sharepoint Ids.The Size.The Special Folder.The Video.The Web Dav Url.The Web Url. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManager
void
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. Identity of the user, device, and application which created the item. Read-only. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Date and time of item creation. Read-only. -
file
The File. Indicates that the remote item is a file. Read-only. -
fileSystemInfo
@SerializedName(value="fileSystemInfo", alternate="FileSystemInfo") @Expose @Nullable public FileSystemInfo fileSystemInfoThe File System Info. Information about the remote item from the local file system. Read-only. -
folder
The Folder. Indicates that the remote item is a folder. Read-only. -
id
The Id. Unique identifier for the remote item in its drive. Read-only. -
image
The Image. Image metadata, if the item is an image. Read-only. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. Identity of the user, device, and application which last modified the item. Read-only. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. Date and time the item was last modified. Read-only. -
name
The Name. Optional. Filename of the remote item. Read-only. -
msgraphPackage
@SerializedName(value="package", alternate="Package") @Expose @Nullable public Package msgraphPackageThe Package. If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only. -
parentReference
@SerializedName(value="parentReference", alternate="ParentReference") @Expose @Nullable public ItemReference parentReferenceThe Parent Reference. Properties of the parent of the remote item. Read-only. -
size
The Size. Size of the remote item. Read-only. -
specialFolder
@SerializedName(value="specialFolder", alternate="SpecialFolder") @Expose @Nullable public SpecialFolder specialFolderThe Special Folder. If the current item is also available as a special folder, this facet is returned. Read-only. -
video
The Video. Video metadata, if the item is a video. Read-only. -
webDavUrl
The Web Dav Url. DAV compatible URL for the item. -
webUrl
The Web Url. URL that displays the resource in the browser. Read-only.
-
-
Constructor Details
-
RemoteItem
public RemoteItem()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManager
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-