Class LegalHoldsListHeldRevisionResult
The legal holds list held revision result object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsListHeldRevisionResult
Constructors
| Improve this Doc View SourceLegalHoldsListHeldRevisionResult(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 SourceCursor
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 |
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> |
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 |