Class ListUsersOnPaperDocResponse
The list users on paper doc response object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListUsersOnPaperDocResponse
Constructors
| Improve this Doc View SourceListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel>, IEnumerable<UserInfoWithPermissionLevel>, UserInfo, Cursor, Boolean)
Initializes a new instance of the List
Declaration
public ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel> invitees, IEnumerable<UserInfoWithPermissionLevel> users, UserInfo docOwner, Cursor cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
invitees | List of email addresses with their respective permission levels that are invited on the Paper doc. |
System. |
users | List of users with their respective permission levels that are invited on the Paper folder. |
User |
docOwner | The Paper doc owner. This field is populated on every single response. |
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 |
DocOwner
The Paper doc owner. This field is populated on every single response.
Declaration
public UserInfo DocOwner { get; protected set; }
Property Value
Type | Description |
---|---|
User |
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 with their respective permission levels that are invited on the Paper doc.
Declaration
public IList<InviteeInfoWithPermissionLevel> Invitees { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Users
List of users with their respective permission levels that are invited on the Paper folder.
Declaration
public IList<UserInfoWithPermissionLevel> Users { get; protected set; }
Property Value
Type | Description |
---|---|
System. |