Show / Hide Table of Contents

Class ListFileRequestsV2Result

Result for ListV2Async(ListFileRequestsArg) and ListContinueAsync(ListFileRequestsContinueArg).

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

Constructors

| Improve this Doc View Source

ListFileRequestsV2Result(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 Source

Cursor

Pass the cursor into ListContinueAsync(ListFileRequestsContinueArg) to obtain additional file requests.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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

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
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFileRequestsV2Result(IEnumerable<FileRequest>, String, Boolean)
  • Properties
    • Cursor
    • FileRequests
    • HasMore
Back to top Generated by DocFX