Dropbox .NET SDK
Show / Hide Table of Contents

Class ListUsersOnPaperDocResponse

The list users on paper doc response object

Inheritance
object
ListUsersOnPaperDocResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListUsersOnPaperDocResponse

Constructors

View Source

ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel>, IEnumerable<UserInfoWithPermissionLevel>, UserInfo, Cursor, bool)

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
IEnumerable<InviteeInfoWithPermissionLevel> invitees

List of email addresses with their respective permission levels that are invited on the Paper doc.

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).

bool 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

View Source

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).

Declaration
public Cursor Cursor { get; protected set; }
Property Value
Type Description
Cursor
View Source

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
View Source

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
bool
View Source

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
IList<InviteeInfoWithPermissionLevel>
View Source

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
IList<UserInfoWithPermissionLevel>
  • View Source
In this article
Back to top Dropbox .NET SDK