Class ListFileRequestsV2Result
Inheritance
Inherited Members
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class ListFileRequestsV2Result
Constructors
| Improve this Doc View SourceListFileRequestsV2Result(IEnumerable<FileRequest>, String, Boolean)
Initializes a new instance of the ListFileRequestsV2Result class.
Declaration
public ListFileRequestsV2Result(IEnumerable<FileRequest> fileRequests, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<FileRequest> | fileRequests | The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. |
System.String | cursor | Pass the cursor into ListContinueAsync(ListFileRequestsContinueArg) to obtain additional file requests. |
System.Boolean | hasMore | Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them. |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into ListContinueAsync(ListFileRequestsContinueArg) to obtain additional file requests.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
FileRequests
The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder.
Declaration
public IList<FileRequest> FileRequests { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<FileRequest> |
HasMore
Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them.
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |