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 ListUsersOnPaperDocResponse class.
Declaration
public ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel> invitees, IEnumerable<UserInfoWithPermissionLevel> users, UserInfo docOwner, Cursor cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<InviteeInfoWithPermissionLevel> | invitees | List of email addresses with their respective permission levels that are invited on the Paper doc. |
System.Collections.Generic.IEnumerable<UserInfoWithPermissionLevel> | users | List of users with their respective permission levels that are invited on the Paper folder. |
UserInfo | docOwner | The Paper doc owner. This field is populated on every single response. |
Cursor | cursor | Pass the cursor into DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsUsersListAsync(ListUsersOnPaperDocArgs). |
System.Boolean | hasMore | Will be set to True if a subsequent call with the provided cursor to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs). |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsUsersListAsync(ListUsersOnPaperDocArgs).
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 |
---|---|
UserInfo |
HasMore
Will be set to True if a subsequent call with the provided cursor to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs).
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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.Collections.Generic.IList<InviteeInfoWithPermissionLevel> |
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.Collections.Generic.IList<UserInfoWithPermissionLevel> |