Show / Hide Table of Contents

Class ListUsersOnFolderResponse

The list users on folder response object

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

Constructors

| Improve this Doc View Source

ListUsersOnFolderResponse(IEnumerable<InviteeInfo>, IEnumerable<UserInfo>, Cursor, Boolean)

Initializes a new instance of the ListUsersOnFolderResponse class.

Declaration
public ListUsersOnFolderResponse(IEnumerable<InviteeInfo> invitees, IEnumerable<UserInfo> users, Cursor cursor, bool hasMore)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<InviteeInfo> invitees

List of email addresses that are invited on the Paper folder.

System.Collections.Generic.IEnumerable<UserInfo> users

List of users that are invited on the Paper folder.

Cursor cursor

Pass the cursor into DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsFolderUsersListAsync(ListUsersOnFolderArgs).

System.Boolean hasMore

Will be set to True if a subsequent call with the provided cursor to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs).

Properties

| Improve this Doc View Source

Cursor

Pass the cursor into DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsFolderUsersListAsync(ListUsersOnFolderArgs).

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

HasMore

Will be set to True if a subsequent call with the provided cursor to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs).

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Invitees

List of email addresses that are invited on the Paper folder.

Declaration
public IList<InviteeInfo> Invitees { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<InviteeInfo>
| Improve this Doc View Source

Users

List of users that are invited on the Paper folder.

Declaration
public IList<UserInfo> Users { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<UserInfo>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListUsersOnFolderResponse(IEnumerable<InviteeInfo>, IEnumerable<UserInfo>, Cursor, Boolean)
  • Properties
    • Cursor
    • HasMore
    • Invitees
    • Users
Back to top Generated by DocFX