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 List
Declaration
public ListUsersOnFolderResponse(IEnumerable<InviteeInfo> invitees, IEnumerable<UserInfo> users, Cursor cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
invitees | List of email addresses that are invited on the Paper folder. |
System. |
users | List of users that are invited on the Paper folder. |
Cursor | cursor | Pass the cursor into Docs |
System. |
hasMore | Will be set to True if a subsequent call with the provided
cursor to Docs |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into Docs
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 Docs
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
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. |
Users
List of users that are invited on the Paper folder.
Declaration
public IList<UserInfo> Users { get; protected set; }
Property Value
Type | Description |
---|---|
System. |