Class ListUsersOnFolderResponse
The list users on folder response object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListUsersOnFolderResponse
Constructors
| Improve this Doc View SourceListUsersOnFolderResponse(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 SourceCursor
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 |
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 |
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> |
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> |