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 List
Declaration
public ListFileRequestsV2Result(IEnumerable<FileRequest> fileRequests, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
fileRequests | The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. |
System. |
cursor | Pass the cursor into List |
System. |
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 List
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
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. |
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. |