Dropbox .NET SDK
Show / Hide Table of Contents

Class LegalHoldsListHeldRevisionResult

The legal holds list held revision result object

Inheritance
object
LegalHoldsListHeldRevisionResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsListHeldRevisionResult

Constructors

View Source

LegalHoldsListHeldRevisionResult(IEnumerable<LegalHoldHeldRevisionMetadata>, bool, string)

Initializes a new instance of the LegalHoldsListHeldRevisionResult class.

Declaration
public LegalHoldsListHeldRevisionResult(IEnumerable<LegalHoldHeldRevisionMetadata> entries, bool hasMore, string cursor = null)
Parameters
Type Name Description
IEnumerable<LegalHoldHeldRevisionMetadata> entries

List of file entries that under the hold.

bool hasMore

True if there are more file entries that haven't been returned. You can retrieve them with a call to /legal_holds/list_held_revisions_continue.

string cursor

The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none. Pass the cursor into /2/team/legal_holds/list_held_revisions/continue.

Properties

View Source

Cursor

The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none. Pass the cursor into /2/team/legal_holds/list_held_revisions/continue.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

Entries

List of file entries that under the hold.

Declaration
public IList<LegalHoldHeldRevisionMetadata> Entries { get; protected set; }
Property Value
Type Description
IList<LegalHoldHeldRevisionMetadata>
View Source

HasMore

True if there are more file entries that haven't been returned. You can retrieve them with a call to /legal_holds/list_held_revisions_continue.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK