Created by Docfx
  • Home
  • API Documentation
  • API Documentation
Show / Hide Table of Contents

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 Source

ListRevisionsResult(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 Source

Entries

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>
| Improve this Doc View Source

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
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListRevisionsResult(Boolean, IEnumerable<FileMetadata>, Nullable<DateTime>)
  • Properties
    • Entries
    • IsDeleted
    • ServerDeleted
Back to top Generated by DocFX