Show / Hide Table of Contents

Class LegalHoldsListHeldRevisionResult

The legal holds list held revision result object

Inheritance
System.Object
LegalHoldsListHeldRevisionResult
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.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsListHeldRevisionResult

Constructors

| Improve this Doc View Source

LegalHoldsListHeldRevisionResult(IEnumerable<LegalHoldHeldRevisionMetadata>, Boolean, String)

Initializes a new instance of the LegalHoldsListHeldRevisionResult class.

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

List of file entries that under the hold.

System.Boolean 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.

System.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

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

Entries

List of file entries that under the hold.

Declaration
public IList<LegalHoldHeldRevisionMetadata> Entries { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<LegalHoldHeldRevisionMetadata>
| Improve this Doc 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
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • LegalHoldsListHeldRevisionResult(IEnumerable<LegalHoldHeldRevisionMetadata>, Boolean, String)
  • Properties
    • Cursor
    • Entries
    • HasMore
Back to top Generated by DocFX