Class ListRevisionsResult
The list revisions result object
Inheritance
System.Object
ListRevisionsResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class ListRevisionsResult
Constructors
| Improve this Doc View SourceListRevisionsResult(Boolean, IEnumerable<FileMetadata>, Nullable<DateTime>)
Initializes a new instance of the ListRevisionsResult class.
Declaration
public ListRevisionsResult(bool isDeleted, IEnumerable<FileMetadata> entries, DateTime? serverDeleted = null)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isDeleted | If the file identified by the latest revision in the response is either deleted or moved. |
System.Collections.Generic.IEnumerable<FileMetadata> | entries | The revisions for the file. Only revisions that are not deleted will show up here. |
System.Nullable<System.DateTime> | serverDeleted | The time of deletion if the file was deleted. |
Properties
| Improve this Doc View SourceEntries
The revisions for the file. Only revisions that are not deleted will show up here.
Declaration
public IList<FileMetadata> Entries { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<FileMetadata> |
IsDeleted
If the file identified by the latest revision in the response is either deleted or moved.
Declaration
public bool IsDeleted { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ServerDeleted
The time of deletion if the file was deleted.
Declaration
public DateTime? ServerDeleted { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |